| 530 | |
| 531 | @dataclass |
| 532 | class ModelPlus: |
| 533 | model: LazyModel |
| 534 | paths: list[Path] # Where this was read from. |
| 535 | format: Literal['ggml', 'torch', 'safetensors', 'none'] |
| 536 | vocab: Vocab | None # For GGML models (which have vocab built in), the vocab. |
| 537 | |
| 538 | |
| 539 | def merge_sharded(models: list[LazyModel]) -> LazyModel: |
no outgoing calls
no test coverage detected