(context: &Arc<AppContext>)
| 3807 | } |
| 3808 | |
| 3809 | fn selected_agent(context: &Arc<AppContext>) -> Option<String> { |
| 3810 | let agent = context.current_agent.read().clone(); |
| 3811 | if agent.trim().is_empty() { |
| 3812 | return None; |
| 3813 | } |
| 3814 | Some(agent) |
| 3815 | } |
| 3816 | |
| 3817 | fn default_export_filename(title: &str, session_id: &str) -> String { |
| 3818 | let mut slug = String::new(); |
no test coverage detected