matrixcode-core 0.4.40

MatrixCode Agent Core - Pure logic, no UI
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! Executor Module
//!
//! Provides execution logic for tool and node JSON-RPC requests.
//! Wraps Transport to send requests with timeout and retry support.

mod tool_executor;
mod node_executor;

pub use tool_executor::{ToolExecutor, ToolExecutorError, ExecutionConfig, RetryStrategy};
pub use node_executor::{
    NodeExecutor, NodeExecutorError, NodeExecutionResult, NodeExecutionStatus, NodeExecutionConfig,
};