19 lines
313 B
Python
19 lines
313 B
Python
|
|
# SPDX-License-Identifier: Apache-2.0
|
||
|
|
# SPDX-FileCopyrightText: Copyright contributors to the vLLM project
|
||
|
|
|
||
|
|
|
||
|
|
from dataclasses import dataclass
|
||
|
|
|
||
|
|
|
||
|
|
@dataclass
|
||
|
|
class BaseModelPath:
|
||
|
|
name: str
|
||
|
|
model_path: str
|
||
|
|
|
||
|
|
|
||
|
|
@dataclass
|
||
|
|
class LoRAModulePath:
|
||
|
|
name: str
|
||
|
|
path: str
|
||
|
|
base_model_name: str | None = None
|