(quant: str, size_gb: float)
| 58 | |
| 59 | |
| 60 | def _gguf(quant: str, size_gb: float) -> GGUFVariant: |
| 61 | return GGUFVariant( |
| 62 | filename=f"model-{quant}.gguf", |
| 63 | quant_type=quant, |
| 64 | file_size_bytes=int(size_gb * 1e9), |
| 65 | ) |
| 66 | |
| 67 | |
| 68 | # ------------------------------------------------------------------ R3-1 |
no test coverage detected