(agent: &AgentDefinition, prompt: &str)
| 441 | } |
| 442 | |
| 443 | fn auto_description(agent: &AgentDefinition, prompt: &str) -> String { |
| 444 | format!( |
| 445 | "Auto-delegated to {} for: {}", |
| 446 | agent.name, |
| 447 | crate::text::truncate_utf8(prompt, 120) |
| 448 | ) |
| 449 | } |
| 450 | |
| 451 | fn auto_prompt(agent: &AgentDefinition, prompt: &str) -> String { |
| 452 | format!( |
no outgoing calls
no test coverage detected