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
15
16
#[path = "chat_wrapper/wrapper.rs"]
mod wrapper;

#[path = "chat_wrapper/impl_chat.rs"]
mod impl_chat;

#[path = "chat_wrapper/impl_other.rs"]
mod impl_other;

#[path = "chat_wrapper/reactive.rs"]
mod reactive;

pub use wrapper::{ChatWithMemory, ChatWithMemoryConfig};

#[cfg(test)]
mod tests;