| 559 | |
| 560 | @dataclass |
| 561 | class ModelPlus: |
| 562 | model: LazyModel |
| 563 | paths: list[Path] # Where this was read from. |
| 564 | format: Literal['ggml', 'torch', 'safetensors', 'none'] |
| 565 | vocab: Vocab | None # For GGML models (which have vocab built in), the vocab. |
| 566 | |
| 567 | |
| 568 | def merge_sharded(models: list[LazyModel]) -> LazyModel: |
no outgoing calls
no test coverage detected