mofa-runtime 0.1.1

MoFA Runtime - Message bus, agent registry, and event loop
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! 配置系统
//!
//! 提供 Agent 的配置加载和管理

pub mod loader;
pub mod schema;

pub use loader::{ConfigFormat, ConfigLoader};
pub use schema::{
    AgentConfig, AgentType, CapabilitiesConfig, ComponentsConfig, LlmAgentConfig, ReActAgentConfig,
    TeamAgentConfig, WorkflowAgentConfig,
};