agentwerk 0.1.2

A minimal Rust crate that gives any application agentic capabilities.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
mod event;
mod output;
mod pool;
pub(crate) mod prompts;
pub(crate) mod queue;
mod werk;

pub use event::{Event, EventKind};
pub use output::{AgentOutput, Statistics};
pub use pool::{AgentPool, JobId, PoolStrategy};
pub use prompts::DEFAULT_BEHAVIOR_PROMPT;
pub use werk::Agent;
pub(crate) use werk::{AgentSpec, Runtime};