feat(rust-ocr): re-export litellm_providers::ocr

This commit is contained in:
Ishaan Jaffer 2026-06-23 14:16:19 -07:00
parent 592bf71408
commit 7b8a0b178c
No known key found for this signature in database

View file

@ -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;