kodegen_tools_browser 0.10.11

KODEGEN.ᴀɪ: Memory-efficient, Blazing-Fast, MCP tools for code generation agents.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
use crate::agent::AgentOutput;

/// Agent command enum for internal message passing
pub(super) enum AgentCommand {
    RunStep,
    Stop,
}

/// Agent response enum for internal message passing
#[derive(Debug)]
pub(super) enum AgentResponse {
    StepComplete(AgentOutput),
    Error(String),
    Stopped,
}