17 lines
408 B
Python
17 lines
408 B
Python
# SPDX-License-Identifier: Apache-2.0
|
|
# SPDX-FileCopyrightText: Copyright contributors to the vLLM project
|
|
|
|
from pydantic import BaseModel, Field
|
|
|
|
|
|
class LoadLoRAAdapterRequest(BaseModel):
|
|
lora_name: str
|
|
lora_path: str
|
|
load_inplace: bool = False
|
|
is_3d_lora_weight: bool = False
|
|
|
|
|
|
class UnloadLoRAAdapterRequest(BaseModel):
|
|
lora_name: str
|
|
lora_int_id: int | None = Field(default=None)
|