refactor: remove agent mode and related functionality; update help and README

This commit is contained in:
asepharyana
2026-07-12 03:22:55 +07:00
parent df5775a272
commit 3cfe39e5f2
15 changed files with 8 additions and 144 deletions
-14
View File
@@ -22,23 +22,9 @@ impl AgentDefinition {
}
}
pub fn with_system_prompt(mut self, prompt: String) -> Self {
self.system_prompt = Some(prompt);
self
}
pub fn with_allowed_tools(mut self, tools: Vec<String>) -> Self {
self.allowed_tools = Some(tools);
self
}
pub fn with_max_steps(mut self, steps: usize) -> Self {
self.max_steps = Some(steps);
self
}
pub fn with_temperature(mut self, temp: f32) -> Self {
self.temperature = Some(temp);
self
}
}