12 lines
321 B
Rust
12 lines
321 B
Rust
|
|
// poc-agent library — reusable components for LLM agent work
|
||
|
|
//
|
||
|
|
// The binary (main.rs) is the full interactive agent with TUI.
|
||
|
|
// This lib exposes the building blocks that other crates (poc-memory)
|
||
|
|
// can use for their own agent loops.
|
||
|
|
|
||
|
|
pub mod api;
|
||
|
|
pub mod journal;
|
||
|
|
pub mod types;
|
||
|
|
pub mod tools;
|
||
|
|
pub mod ui_channel;
|