(
state: State<'_, AppState>,
agent_run_id: String,
)
| 35 | |
| 36 | #[tauri::command] |
| 37 | pub async fn list_tool_calls( |
| 38 | state: State<'_, AppState>, |
| 39 | agent_run_id: String, |
| 40 | ) -> AppResult<Vec<ToolCall>> { |
| 41 | agent_service::list_tool_calls(state.pool(), &agent_run_id).await |
| 42 | } |
| 43 | |
| 44 | #[tauri::command] |
| 45 | pub async fn run_agent( |