agent-code-lib 0.8.2

Agent engine library: LLM providers, tools, query loop, memory
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! agent-code-lib: the complete agent engine as a library.
#![allow(dead_code, clippy::new_without_default, clippy::len_without_is_empty)]
//!
//! Contains LLM providers, tools, query engine, memory, permissions,
//! and all services. The CLI binary is a thin wrapper over this.

pub mod config;
pub mod error;
pub mod hooks;
pub mod llm;
pub mod memory;
pub mod permissions;
pub mod query;
pub mod services;
pub mod skills;
pub mod state;
pub mod tools;