vllm.entrypoints.serve.lora.protocol ¶ LoadLoRAAdapterRequest ¶ Bases: BaseModel Source code in vllm/entrypoints/serve/lora/protocol.py 7 8 9 10class LoadLoRAAdapterRequest(BaseModel): lora_name: str lora_path: str load_inplace: bool = False load_inplace class-attribute instance-attribute ¶ load_inplace: bool = False lora_name instance-attribute ¶ lora_name: str lora_path instance-attribute ¶ lora_path: str UnloadLoRAAdapterRequest ¶ Bases: BaseModel Source code in vllm/entrypoints/serve/lora/protocol.py 13 14 15class UnloadLoRAAdapterRequest(BaseModel): lora_name: str lora_int_id: int | None = Field(default=None) lora_int_id class-attribute instance-attribute ¶ lora_int_id: int | None = Field(default=None) lora_name instance-attribute ¶ lora_name: str