Add Rust llms module scaffolding mirroring litellm/llms

This commit is contained in:
Ishaan Jaffer 2026-06-16 20:47:26 -07:00
parent dc6c4dc687
commit 8637a44bff
No known key found for this signature in database
5 changed files with 6 additions and 0 deletions

View file

@ -0,0 +1 @@
pub mod ocr;

View file

@ -0,0 +1 @@
pub mod transformation;

View file

@ -0,0 +1 @@
pub mod ocr;

View file

@ -0,0 +1 @@
pub mod transformation;

View file

@ -0,0 +1,2 @@
pub mod base_llm;
pub mod mistral;