2026-03-25 00:52:41 -04:00
|
|
|
// agent/ — interactive agent and shared infrastructure
|
|
|
|
|
//
|
|
|
|
|
// Merged from the former poc-agent crate. Contains:
|
|
|
|
|
// - api/ — LLM API backends (OpenAI-compatible, Anthropic)
|
|
|
|
|
// - types — Message, ToolDef, ChatRequest, etc.
|
|
|
|
|
// - tools/ — tool definitions and dispatch
|
|
|
|
|
// - ui_channel — streaming UI communication
|
|
|
|
|
// - runner — the interactive agent loop
|
2026-03-25 01:23:12 -04:00
|
|
|
// - cli, context, dmn, identity, log, observe, parsing, tui
|
|
|
|
|
// Config moved to crate::config (unified with memory config)
|
2026-03-25 00:52:41 -04:00
|
|
|
|
|
|
|
|
pub mod ui_channel;
|
|
|
|
|
pub mod cli;
|
|
|
|
|
pub mod dmn;
|
|
|
|
|
pub mod identity;
|
|
|
|
|
pub mod log;
|
|
|
|
|
pub mod observe;
|
|
|
|
|
pub mod parsing;
|
|
|
|
|
pub mod tui;
|