Map agent_type to a display name for status messages
(agent_type: &str)
| 137 | |
| 138 | /// Map agent_type to a display name for status messages |
| 139 | fn agent_display_name(agent_type: &str) -> &'static str { |
| 140 | match agent_type { |
| 141 | "agentic" => "Fang", |
| 142 | _ => "AI Assistant", |
| 143 | } |
| 144 | } |
| 145 | |
| 146 | impl ChatMode { |
| 147 | pub fn new( |
no outgoing calls
no test coverage detected