From 7b8a0b178c5d82d5e9dd470e46ffe1a9b7d90a2e Mon Sep 17 00:00:00 2001 From: Ishaan Jaffer Date: Tue, 23 Jun 2026 14:16:19 -0700 Subject: [PATCH] feat(rust-ocr): re-export litellm_providers::ocr --- litellm-rust/crates/providers/src/lib.rs | 5 +++++ 1 file changed, 5 insertions(+) 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;