d7f0c45164
新增业务中立的 function-calling harness 与公共提示词协议 统一画布 Agent 工具路由约束和待确认控制语义 保留失败前输出并事务化收口 memory、deadline 与取消状态 迁移画布 Agent 和 API 编排并同步架构文档与项目记忆
11 lines
208 B
Rust
11 lines
208 B
Rust
//! 与具体业务 Agent、模型和界面无关的 function-calling harness。
|
|
|
|
pub mod agent;
|
|
pub mod agent_builder;
|
|
pub mod error;
|
|
pub mod hook;
|
|
pub mod memory;
|
|
pub mod prompt;
|
|
pub mod run;
|
|
pub mod tool;
|