diff --git a/studio/backend/routes/inference.py b/studio/backend/routes/inference.py index 9e57946565..b3ea1fa1be 100644 --- a/studio/backend/routes/inference.py +++ b/studio/backend/routes/inference.py @@ -69,10 +69,10 @@ async def load_model(request: LoadRequest): backend = get_inference_backend() # Create config using clean factory method + # is_lora is auto-detected from adapter_config.json on disk/HF config = ModelConfig.from_identifier( model_id=request.model_path, hf_token=request.hf_token, - is_lora=request.is_lora, ) if not config: