llm 1.3.8

A Rust library unifying multiple LLM backends.
Documentation
1
2
3
4
5
6
7
8
9
10
pub mod chat_wrapper;
pub mod cond_macros;
pub mod shared_memory;
pub mod sliding_window;
mod types;

pub use chat_wrapper::{ChatWithMemory, ChatWithMemoryConfig};
pub use shared_memory::SharedMemory;
pub use sliding_window::{SlidingWindowMemory, TrimStrategy};
pub use types::{MemoryProvider, MemoryType, MessageCondition, MessageEvent};