| 116 | /// HuggingFace model file variant (quantization) |
| 117 | #[derive(Debug, Clone, Serialize, Deserialize)] |
| 118 | pub struct HfModelFile { |
| 119 | pub filename: String, |
| 120 | pub size: i64, |
| 121 | pub quantization: Option<String>, |
| 122 | pub estimated_ram_gb: f64, |
| 123 | } |
| 124 | |
| 125 | /// HuggingFace download progress event |
| 126 | #[derive(Debug, Clone, Serialize, Deserialize)] |
nothing calls this directly
no outgoing calls
no test coverage detected