llm 1.3.8

A Rust library unifying multiple LLM backends.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#[path = "resilient_llm/config.rs"]
mod config;

#[path = "resilient_llm/wrapper.rs"]
mod wrapper;

#[path = "resilient_llm/chat.rs"]
mod chat;

#[path = "resilient_llm/other.rs"]
mod other;

pub use config::ResilienceConfig;
pub use wrapper::ResilientLLM;