otherone-agent 0.5.0

Agent 循环驱动 — 核心 Agent 主循环,支持流式和非流式响应
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
mod event;
pub mod registry;
pub mod runtime;
pub mod supervisor;
pub mod types;

pub use registry::{
    AgentRegistry, ModelRegistry, RuntimePolicy, RuntimeSnapshot, AGENT_CALL_TOOL_NAME,
    MEMORY_RECALL_TOOL_NAME, MEMORY_STORE_TOOL_NAME,
};
pub use runtime::{
    AgentCallAuthorizer, AgentRunCommandSender, AgentRunHandle, AgentRuntime, AgentRuntimeBuilder,
    AuthorizationDecision, DefaultModelExecutor, ModelExecutor,
};
pub use supervisor::{BudgetLedger, InMemoryRunStore};
pub use types::*;