| 672 | |
| 673 | @dataclass |
| 674 | class ModelPlus: |
| 675 | model: LazyModel |
| 676 | paths: list[Path] # Where this was read from. |
| 677 | format: Literal['ggml', 'torch', 'safetensors', 'none'] |
| 678 | vocab: Vocab | None # For GGML models (which have vocab built in), the vocab. |
| 679 | |
| 680 | |
| 681 | def merge_sharded(models: list[LazyModel]) -> LazyModel: |
no outgoing calls
no test coverage detected