| 858 | |
| 859 | @dataclass |
| 860 | class ModelPlus: |
| 861 | model: LazyModel |
| 862 | paths: list[Path] # Where this was read from. |
| 863 | format: Literal['ggml', 'torch', 'safetensors', 'none'] |
| 864 | vocab: BaseVocab | None # For GGML models (which have vocab built in), the vocab. |
| 865 | |
| 866 | |
| 867 | def merge_sharded(models: list[LazyModel]) -> LazyModel: |
no outgoing calls
no test coverage detected