bring-your-own-model
Installation
SKILL.md
Bring your own model
Take a model you already have (a LoRA or a full checkpoint, as a hosted safetensors file) and import it into Runware so it becomes a first-class catalog model. You assign it an AIR you own, declare its architecture, and from then on you call it in imageInference exactly like any built-in model. The task type is modelUpload.
Inputs to collect
- The model file as a
downloadURL. A reachable URL to yoursafetensors. Runware downloads it server-side, so it must be publicly fetchable (or signed). category- what kind of weights:lora,checkpoint,lycoris,vae, orembeddings. (Ask if ambiguous, most "my own model" cases areloraorcheckpoint.)architecture- the base family the weights were trained on (a FLUX or SDXL family identifier). This must match a known architecture so inference can pair it correctly.- The AIR to assign under the
runwaresource you control (e.g.runware:<id>@<n>), plus a humannameandversion. - Optional:
positiveTriggerWords(for a LoRA),defaultWeight, and whether to keep itprivate.
Models
- This is not a model-picking task, it is a model-importing task. The "model" is yours.
- Confirm the exact
modelUploadschema (its enums and required fields) viarunware-runbefore calling, the acceptedarchitecturevalues andcategoryenum are the gate. Do not hardcode an architecture string from memory, resolve it live. - To generate after import, route the model choice through
runware-modelsonly to confirm your new AIR is showing as available, then call it like any catalog model.