ferrous_llm/lib.rs
1#[allow(ambiguous_glob_reexports)]
2pub use ferrous_llm_core::*;
3
4#[cfg(feature = "openai")]
5pub mod openai {
6 pub use ferrous_llm_openai::*;
7}
8
9#[cfg(feature = "ollama")]
10pub mod ollama {
11 pub use ferrous_llm_ollama::*;
12}
13
14#[cfg(feature = "anthropic")]
15pub mod anthropic {
16 pub use ferrous_llm_anthropic::*;
17}