| 37 | /// Chat message format for Ollama API requests |
| 38 | #[derive(Debug, Clone, Serialize, Deserialize)] |
| 39 | pub struct ChatMessage { |
| 40 | pub role: String, |
| 41 | pub content: String, |
| 42 | } |
| 43 | |
| 44 | /// Download progress event emitted during model downloads |
| 45 | #[derive(Debug, Clone, Serialize, Deserialize)] |
nothing calls this directly
no outgoing calls
no test coverage detected