Remove context by ID
(&mut self, context_id: &str)
| 492 | |
| 493 | /// Remove context by ID |
| 494 | pub async fn remove_by_id(&mut self, context_id: &str) -> Result<(), String> { |
| 495 | self.agent_client |
| 496 | .remove_context_by_id(context_id) |
| 497 | .await |
| 498 | .map_err(|e| e.to_string()) |
| 499 | } |
| 500 | |
| 501 | /// Update context by path |
| 502 | pub async fn update_by_path(&mut self, path_str: &str) -> Result<String, String> { |
no test coverage detected