(
&mut self,
chat_view: &mut ChatView,
chat_state: &mut ChatState,
rt_handle: &tokio::runtime::Handle,
)
| 1961 | } |
| 1962 | |
| 1963 | fn cycle_agent( |
| 1964 | &mut self, |
| 1965 | chat_view: &mut ChatView, |
| 1966 | chat_state: &mut ChatState, |
| 1967 | rt_handle: &tokio::runtime::Handle, |
| 1968 | ) { |
| 1969 | self.switch_agent_by_offset(1, chat_view, chat_state, rt_handle); |
| 1970 | } |
| 1971 | |
| 1972 | fn cycle_agent_reverse( |
| 1973 | &mut self, |
no test coverage detected