Get the current agent from the session
(session: &ChatSession)
| 104 | |
| 105 | /// Get the current agent from the session |
| 106 | fn get_agent(session: &ChatSession) -> Option<&crate::cli::Agent> { |
| 107 | session.conversation.agents.get_active() |
| 108 | } |
| 109 | |
| 110 | async fn execute_operation(&self, os: &Os, session: &mut ChatSession) -> OperationResult { |
| 111 | match self { |
nothing calls this directly
no test coverage detected