| 100 | /// Configuration for the agentic loop. |
| 101 | #[derive(Debug, Clone, Serialize, Deserialize)] |
| 102 | pub 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 | |
| 110 | impl Default for AgentConfig { |
| 111 | fn default() -> Self { |
nothing calls this directly
no outgoing calls
no test coverage detected