(&self)
| 17 | } |
| 18 | |
| 19 | pub async fn load_raw(&self) -> Result<Vec<serde_json::Value>> { |
| 20 | streaming::read_jsonl_raw(self.config.history_file()).await |
| 21 | } |
| 22 | |
| 23 | pub async fn filter_prompts(&self) -> Result<Vec<HistoryEntry>> { |
| 24 | let entries = self.load_all().await?; |
nothing calls this directly
no test coverage detected