nexil 0.6.2

Provider-agnostic LLM toolkit — streaming, tool calls, tape storage, OAuth
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! Client helpers for Conduit.

pub mod chat;
pub mod embedding;
pub mod internal;
pub mod parsing;
pub mod text;

pub use chat::{ChatClient, PreparedChat, ToolCallAssembler};
pub use embedding::EmbeddingClient;
pub use internal::InternalOps;
pub use text::TextClient;