llm_daemon/
lib.rs

1mod daemon_trait;
2#[cfg(feature = "llama-daemon")]
3mod llama_daemon;
4#[cfg(feature = "proxy")]
5mod proxy;
6mod test_client;
7mod util;
8
9pub use daemon_trait::{LlmConfig, LlmDaemon};
10#[cfg(feature = "llama-daemon")]
11pub use llama_daemon::{
12    llama_config_map, Daemon as LlamaDaemon, Daemon2, Daemon3, Daemon3Params, LlamaConfig,
13    LlamaConfigs,
14};
15#[cfg(feature = "proxy")]
16pub use proxy::{Proxy, ProxyConfig};
17pub use test_client::Generator;