- Split agent crate into client/, model/, agent/ subdirs - Add billing.rs for token usage recording - Add sync.rs for upstream model sync - EmbedService: Qdrant-backed vector memory for semantic search - ChatService: wire EmbedService for memory lookup, passive skill awareness - ReAct loop: streamline with tokio::select! and proper error handling
7 lines
120 B
Rust
7 lines
120 B
Rust
pub mod capability;
|
|
pub mod model_entry;
|
|
pub mod parameter_profile;
|
|
pub mod pricing;
|
|
pub mod provider;
|
|
pub mod version;
|