MCPcopy Create free account
hub / github.com/atomicdotdev/atomic / AgentConfig

Class AgentConfig

atomic-repository/src/ai/tools.rs:102–108  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

100/// Configuration for the agentic loop.
101#[derive(Debug, Clone, Serialize, Deserialize)]
102pub struct AgentConfig {
103 pub system_prompt: String,
104 pub max_turns: u8,
105 pub max_tokens: u32,
106 /// Print live tool call output to stderr.
107 pub verbose: bool,
108}
109
110impl Default for AgentConfig {
111 fn default() -> Self {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected