Loading a local LoRA adapter failed with GenerationError: Request failed during generation: Server error: No local weights... even though the directory contained adapterconfig.json and adaptermodel.bin. Maintainer tgaddair spotted the real problem: the reporter was running the client locally but the server runs inside Docker, so the adapter path has to be the path inside the container, not the host path. Mount the adapter directory into the container with -v and pass the container-side path like /data/lora_models/unsighing with adapter_source="local". The reporter confirmed it worked after that.