(&self, task: String)
| 21 | } |
| 22 | |
| 23 | pub async fn execute_task(&self, task: String) -> Result<AgentResponse, String> { |
| 24 | Ok(AgentResponse { |
| 25 | content: format!("Executed: {}", task), |
| 26 | tool_calls: vec![], |
| 27 | }) |
| 28 | } |
| 29 | } |
nothing calls this directly
no outgoing calls
no test coverage detected