diff --git a/litellm-rust/crates/providers/src/lib.rs b/litellm-rust/crates/providers/src/lib.rs index 1a0ca5b7e42..617de47ab96 100644 --- a/litellm-rust/crates/providers/src/lib.rs +++ b/litellm-rust/crates/providers/src/lib.rs @@ -1,2 +1,7 @@ pub mod mistral; pub mod ocr; + +// `litellm_providers::ocr(...)` — the typed async OCR entry point. The function +// lives in the `ocr` module; this re-export lets callers spell it without the +// `ocr::ocr` stutter. (A module and a value can share a name in Rust.) +pub use ocr::ocr;