The pipelines in Scope support using one or multiple LoRAs to customize concepts and styles used in generations.
- The
streamdiffusionv2pipeline is compatible with Wan2.1-T2V-1.3B LoRAs. - The
longlivepipeline is compatible with Wan2.1-T2V-1.3B LoRAs. - The
reward-forcingpipeline is compatible with Wan2.1-T2V-1.3B LoRAs. - The
memflowpipeline is compatible with Wan2.1-T2V-1.3B LoRAs. - The
krea-realtime-videopipeline is compatible with Wan2.1-T2V-14B LoRAs.
Scope supports using LoRAs that can be downloaded from popular hubs such as HuggingFace or CivitAI.
A few LoRAs that you can start with for streamdiffusionv2, longlive, reward-forcing and memflow:
A few LoRAs that you can start with for krea-realtime-video:
The easiest way to install LoRAs is through the Settings dialog:
- Click the Settings icon (gear) in the header
- Select the LoRAs tab
- Paste a LoRA URL from HuggingFace or CivitAI into the input field
- Click Install
The LoRA will be downloaded and saved to your LoRA directory automatically. Once installed, you can select it from the LoRA Adapters section in the Settings panel.
CivitAI requires an API token for programmatic downloads. You can configure this in one of two ways:
Option 1: Settings Dialog
- Click the Settings icon (gear) in the header
- Select the API Keys tab
- Enter your CivitAI API token and click Save
Option 2: Environment Variable
export CIVITAI_API_TOKEN=your_civitai_token_hereNote: The environment variable takes precedence over a token stored through the UI.
Get your API key at civitai.com/user/account.
For manual installation, follow the steps below.
If you are running Scope locally you can simply download the LoRA files to your computer and move them to the proper directory.
HuggingFace
Click the download button and move the file to the ~/.daydream-scope/models/lora folder.
CivitAI
Click the download button and move the file to the ~/.daydream-scope/models/lora folder.
If you are running the Scope server on a remote machine in the cloud, then we recommend you programmatically download the LoRA files to the remote machine.
HuggingFace
First, copy the link address for the .safetensors file found under "Files and versions" of the LoRA page:
CleanShot.2025-11-21.at.12.05.48.mp4
Then, navigate to /workspace/models/lora and run:
wget -O <file name> <link address>
An example:
wget -O pixar_10_epochs.safetensors https://huggingface.co/Remade-AI/Pixar/resolve/main/pixar_10_epochs.safetensors?download=true
Tip: On some RunPod templates,
wgetmay not be pre-installed. If so, runapt-get install wgetfirst.
CivitAI
First, get a CivitAI API key which is required for programmatic downloads.
Then, copy the link address from the LoRA page:
CleanShot.2025-11-21.at.12.14.03.mp4
Then, navigate to /workspace/models/lora and run:
wget -O <file name> "<link address>&token=<TOKEN>"
<TOKEN> is your API key.
An example:
wget -O arcane-jinx.safetensors "https://civitai.com/api/download/models/1679582?type=Model&format=SafeTensor&token=<TOKEN>"
Warning
Many LoRAs require a trigger keyword in your prompt to activate. Check the LoRA's model page (on HuggingFace or CivitAI) for the required trigger phrase and include it in your prompt.
Important
Make sure to surround the link address including the token with double quotes!