Get all contexts from agent client
(&self)
| 368 | |
| 369 | /// Get all contexts from agent client |
| 370 | pub async fn get_all(&self) -> Result<Vec<KnowledgeContext>, String> { |
| 371 | Ok(self.agent_client.get_contexts().await) |
| 372 | } |
| 373 | |
| 374 | /// Search - delegates to async client |
| 375 | pub async fn search(&self, query: &str, context_id: Option<&str>) -> Result<Vec<SearchResult>, KnowledgeError> { |
no test coverage detected