(
content: &candle_core::quantized::gguf_file::Content,
key: &str,
)
| 300 | // ── Metadata helpers ───────────────────────────────────────────────── |
| 301 | |
| 302 | fn get_str( |
| 303 | content: &candle_core::quantized::gguf_file::Content, |
| 304 | key: &str, |
| 305 | ) -> Option<String> { |
| 306 | use candle_core::quantized::gguf_file::Value; |
| 307 | match content.metadata.get(key)? { |
| 308 | Value::String(s) => Some(s.clone()), |
| 309 | _ => None, |
| 310 | } |
| 311 | } |
| 312 | |
| 313 | fn get_u32( |
| 314 | content: &candle_core::quantized::gguf_file::Content, |
no test coverage detected