agentwerk 0.1.11

A minimal Rust crate that gives any application agentic capabilities.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! Agent implementations.

pub mod agent;
pub mod knowledge;
pub mod r#loop;
pub mod policy;
pub(crate) mod retry;
pub mod running;
pub mod stats;
pub mod tickets;

pub use agent::Agent;
pub use knowledge::{IntoKnowledge, Knowledge};
pub use policy::Policies;
pub use running::Running;
pub use stats::{LoopStats, Stats};
pub use tickets::{Status, Ticket, TicketError, TicketResults, TicketSystem};