(state: State<'_, AppState>, session_id: String)
| 43 | |
| 44 | #[tauri::command] |
| 45 | pub async fn cancel_chat(state: State<'_, AppState>, session_id: String) -> AppResult<()> { |
| 46 | state.cancellations.cancel(&format!("chat:{session_id}")); |
| 47 | Ok(()) |
| 48 | } |
| 49 | |
| 50 | #[tauri::command] |
| 51 | pub async fn generate_excalidraw( |