agentwerk 0.1.8

A minimal Rust crate that gives any application agentic capabilities.
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! Mock-driven tests that never hit a live LLM provider.
//! Run with `make test`.

#[path = "unit/context_window_events.rs"]
mod context_window_events;

#[path = "unit/structured_output.rs"]
mod structured_output;

#[path = "unit/running_agent.rs"]
mod running_agent;