StableSwarmUI API Documentation - ModelsAPI

May 27, 2024 ยท View on GitHub

This is a subset of the API docs, see /docs/API.md for general info.

API routes related to handling models (including loras, wildcards, etc).

Table of Contents:

HTTP Route /API/DeleteWildcard

Description

Deletes a wildcard file.

Parameters

NameTypeDescriptionDefault
cardStringExact filepath name of the wildcard.(REQUIRED)

Return Format

"success": true

HTTP Route /API/DescribeModel

Description

Returns a full description for a single model.

Parameters

NameTypeDescriptionDefault
modelNameStringFull filepath name of the model being requested.(REQUIRED)
subtypeStringWhat model sub-type to use, can be eg LoRA or Wildcards or etc.Stable-Diffusion

Return Format

    "model":
    {
        "name": "namehere",
        "title": "titlehere",
        "author": "authorhere",
        "description": "descriptionhere",
        "preview_image": "data:image/jpg;base64,abc123",
        "loaded": false, // true if any backend has the model loaded currently
        "architecture": "archhere", // model class ID
        "class": "classhere", // user-friendly class name
        "compat_class": "compatclasshere", // compatibility class name
        "standard_width": 1024,
        "standard_height": 1024,
        "license": "licensehere",
        "date": "datehere",
        "usage_hint": "usagehinthere",
        "trigger_phrase": "triggerphrasehere",
        "merged_from": "mergedfromhere",
        "tags": ["tag1", "tag2"],
        "is_safetensors": true,
        "is_negative_embedding": false,
        "local": true // false means remote servers (Swarm-API-Backend) have this model, but this server does not
    }

HTTP Route /API/EditModelMetadata

Description

Modifies the metadata of a model. Returns before the file update is necessarily saved.

Parameters

NameTypeDescriptionDefault
modelStringExact filepath name of the model.(REQUIRED)
titleStringNew model title metadata value.(REQUIRED)
authorStringNew model author metadata value.(REQUIRED)
typeStringNew model description metadata value (architecture ID).(REQUIRED)
descriptionStringNew model description metadata value.(REQUIRED)
standard_widthInt32New model standard_width metadata value.(REQUIRED)
standard_heightInt32New model standard_height metadata value.(REQUIRED)
preview_imageStringNew model preview_image metadata value (image-data-string format, or null to not change).(REQUIRED)
usage_hintStringNew model usage_hint metadata value.(REQUIRED)
dateStringNew model date metadata value.(REQUIRED)
licenseStringNew model license metadata value.(REQUIRED)
trigger_phraseStringNew model trigger_phrase metadata value.(REQUIRED)
prediction_typeStringNew model prediction_type metadata value.(REQUIRED)
tagsStringNew model tags metadata value (comma-separated list).(REQUIRED)
is_negative_embeddingBooleanNew model is_negative_embedding metadata value.False
subtypeStringThe model's sub-type, eg Stable-Diffusion, LoRA, etc.Stable-Diffusion

Return Format

"success": true

HTTP Route /API/EditWildcard

Description

Edits a wildcard file.

Parameters

NameTypeDescriptionDefault
cardStringExact filepath name of the wildcard.(REQUIRED)
optionsStringNewline-separated string listing of wildcard options.(REQUIRED)
preview_imageStringImage-data-string of a preview, or null to not change.(REQUIRED)

Return Format

"success": true

HTTP Route /API/ListLoadedModels

Description

Returns a list of currently loaded Stable-Diffusion models (ie at least one backend has it loaded).

Parameters

None.

Return Format

"models":
[
    {
        "name": "namehere",
        // see `DescribeModel` for the full model description
    }
]

HTTP Route /API/ListModels

Description

Returns a list of models available on the server within a given folder, with their metadata.

Parameters

NameTypeDescriptionDefault
pathStringWhat folder path to search within. Use empty string for root.(REQUIRED)
depthInt32Maximum depth (number of recursive folders) to search.(REQUIRED)
subtypeStringModel sub-type - LoRA, Wildcards, etc.Stable-Diffusion
sortByStringWhat to sort the list by - Name, DateCreated, or `DateModified.Name
sortReverseBooleanIf true, the sorting should be done in reverse.False

Return Format

    "folders": ["folder1", "folder2"],
    "files":
    [
        {
            "name": "namehere",
            // etc., see `DescribeModel` for the full model description
        }
    ]

HTTP Route /API/SelectModel

Description

Forcibly loads a model immediately on some or all backends.

Parameters

NameTypeDescriptionDefault
modelStringThe full filepath of the model to load.(REQUIRED)
backendIdStringThe ID of a backend to load the model on, or null to load on all.(null)

Return Format

"success": true

WebSocket Route /API/SelectModelWS

Description

Forcibly loads a model immediately on some or all backends, with live status updates over websocket.

Parameters

NameTypeDescriptionDefault
modelString(PARAMETER DESCRIPTION NOT SET)(REQUIRED)

Return Format

"success": true

HTTP Route /API/TestPromptFill

Description

Tests how a prompt fills. Useful for testing wildcards, <random:..., etc.

Parameters

NameTypeDescriptionDefault
promptStringThe prompt to fill.(REQUIRED)

Return Format

    "result": "your filled prompt"