(text: &str, terms: &[&str])
| 437 | } |
| 438 | |
| 439 | fn contains_any(text: &str, terms: &[&str]) -> bool { |
| 440 | terms.iter().any(|term| text.contains(term)) |
| 441 | } |
| 442 | |
| 443 | fn auto_description(agent: &AgentDefinition, prompt: &str) -> String { |
| 444 | format!( |
no test coverage detected