matrixcode-core 0.4.43

MatrixCode Agent Core - Pure logic, no UI
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Router Module
//!
//! Provides routing logic for tool and node execution requests.
//! Routes JSON-RPC calls to the appropriate extension services.

mod tool_router;
mod node_router;

pub use tool_router::{ToolRouter, ToolRouterError, ToolRouteResult, ToolDefinition};
pub use node_router::{
    NodeRouter, NodeRouterError, NodeRouteResult, NodeDefinition, NodeContext,
    NodeType, NodeCapability,
};