Files
enginex-bi_150-vllm/vllm/entrypoints/openai/models/protocol.py
2026-04-09 11:23:47 +08:00

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