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
13
14
15
16
17
18
//! Tape primitives for Conduit.

pub mod context;
pub mod entries;
pub mod manager;
pub mod query;
pub mod session;
pub mod store;

pub use context::{AnchorSelector, TapeContext, build_messages};
pub use entries::{TapeEntry, latest_system_content};
pub use manager::{AsyncTapeManager, TapeManager};
pub use query::TapeQuery;
pub use session::TapeSession;
pub use store::{
    AsyncTapeStore, AsyncTapeStoreAdapter, InMemoryTapeStore, TapeStore, UnavailableTapeStore,
    fetch_all_in_memory,
};