|
|
|
@ -3735,11 +3735,11 @@ export type components = {
|
|
|
|
|
cover_image?: string | null;
|
|
|
|
|
/**
|
|
|
|
|
* Format
|
|
|
|
|
* @description Format of the provided checkpoint model
|
|
|
|
|
* @default checkpoint
|
|
|
|
|
* @constant
|
|
|
|
|
* @enum {string}
|
|
|
|
|
*/
|
|
|
|
|
format: "checkpoint";
|
|
|
|
|
format: "checkpoint" | "bnb_quantized_nf4b";
|
|
|
|
|
/**
|
|
|
|
|
* Config Path
|
|
|
|
|
* @description path to the checkpoint model config file
|
|
|
|
@ -5750,7 +5750,7 @@ export type components = {
|
|
|
|
|
* @default null
|
|
|
|
|
* @enum {string}
|
|
|
|
|
*/
|
|
|
|
|
t5_encoder?: "base" | "16b_quantized" | "8b_quantized";
|
|
|
|
|
t5_encoder?: "base" | "8b_quantized";
|
|
|
|
|
/**
|
|
|
|
|
* type
|
|
|
|
|
* @default flux_model_loader
|
|
|
|
@ -5778,12 +5778,18 @@ export type components = {
|
|
|
|
|
* T5 Encoder
|
|
|
|
|
* @description T5 tokenizer and text encoder
|
|
|
|
|
*/
|
|
|
|
|
t5Encoder: components["schemas"]["T5EncoderField"];
|
|
|
|
|
t5_encoder: components["schemas"]["T5EncoderField"];
|
|
|
|
|
/**
|
|
|
|
|
* VAE
|
|
|
|
|
* @description VAE
|
|
|
|
|
*/
|
|
|
|
|
vae: components["schemas"]["VAEField"];
|
|
|
|
|
/**
|
|
|
|
|
* Max Seq Length
|
|
|
|
|
* @description VAE
|
|
|
|
|
* @enum {integer}
|
|
|
|
|
*/
|
|
|
|
|
max_seq_len: 256 | 512;
|
|
|
|
|
/**
|
|
|
|
|
* type
|
|
|
|
|
* @default flux_model_loader_output
|
|
|
|
@ -5822,7 +5828,14 @@ export type components = {
|
|
|
|
|
* @description T5 tokenizer and text encoder
|
|
|
|
|
* @default null
|
|
|
|
|
*/
|
|
|
|
|
t5Encoder?: components["schemas"]["T5EncoderField"];
|
|
|
|
|
t5_encoder?: components["schemas"]["T5EncoderField"];
|
|
|
|
|
/**
|
|
|
|
|
* Max Seq Len
|
|
|
|
|
* @description Max sequence length for the desired flux model
|
|
|
|
|
* @default null
|
|
|
|
|
* @enum {integer}
|
|
|
|
|
*/
|
|
|
|
|
max_seq_len?: 256 | 512;
|
|
|
|
|
/**
|
|
|
|
|
* Positive Prompt
|
|
|
|
|
* @description Positive prompt for text-to-image generation.
|
|
|
|
@ -9694,6 +9707,96 @@ export type components = {
|
|
|
|
|
* @enum {integer}
|
|
|
|
|
*/
|
|
|
|
|
LogLevel: 0 | 10 | 20 | 30 | 40 | 50;
|
|
|
|
|
/**
|
|
|
|
|
* MainBnbQuantized4bCheckpointConfig
|
|
|
|
|
* @description Model config for main checkpoint models.
|
|
|
|
|
*/
|
|
|
|
|
MainBnbQuantized4bCheckpointConfig: {
|
|
|
|
|
/**
|
|
|
|
|
* Key
|
|
|
|
|
* @description A unique key for this model.
|
|
|
|
|
*/
|
|
|
|
|
key: string;
|
|
|
|
|
/**
|
|
|
|
|
* Hash
|
|
|
|
|
* @description The hash of the model file(s).
|
|
|
|
|
*/
|
|
|
|
|
hash: string;
|
|
|
|
|
/**
|
|
|
|
|
* Path
|
|
|
|
|
* @description Path to the model on the filesystem. Relative paths are relative to the Invoke root directory.
|
|
|
|
|
*/
|
|
|
|
|
path: string;
|
|
|
|
|
/**
|
|
|
|
|
* Name
|
|
|
|
|
* @description Name of the model.
|
|
|
|
|
*/
|
|
|
|
|
name: string;
|
|
|
|
|
/** @description The base model. */
|
|
|
|
|
base: components["schemas"]["BaseModelType"];
|
|
|
|
|
/**
|
|
|
|
|
* Description
|
|
|
|
|
* @description Model description
|
|
|
|
|
*/
|
|
|
|
|
description?: string | null;
|
|
|
|
|
/**
|
|
|
|
|
* Source
|
|
|
|
|
* @description The original source of the model (path, URL or repo_id).
|
|
|
|
|
*/
|
|
|
|
|
source: string;
|
|
|
|
|
/** @description The type of source */
|
|
|
|
|
source_type: components["schemas"]["ModelSourceType"];
|
|
|
|
|
/**
|
|
|
|
|
* Source Api Response
|
|
|
|
|
* @description The original API response from the source, as stringified JSON.
|
|
|
|
|
*/
|
|
|
|
|
source_api_response?: string | null;
|
|
|
|
|
/**
|
|
|
|
|
* Cover Image
|
|
|
|
|
* @description Url for image to preview model
|
|
|
|
|
*/
|
|
|
|
|
cover_image?: string | null;
|
|
|
|
|
/**
|
|
|
|
|
* Type
|
|
|
|
|
* @default main
|
|
|
|
|
* @constant
|
|
|
|
|
* @enum {string}
|
|
|
|
|
*/
|
|
|
|
|
type: "main";
|
|
|
|
|
/**
|
|
|
|
|
* Trigger Phrases
|
|
|
|
|
* @description Set of trigger phrases for this model
|
|
|
|
|
*/
|
|
|
|
|
trigger_phrases?: string[] | null;
|
|
|
|
|
/** @description Default settings for this model */
|
|
|
|
|
default_settings?: components["schemas"]["MainModelDefaultSettings"] | null;
|
|
|
|
|
/** @default normal */
|
|
|
|
|
variant?: components["schemas"]["ModelVariantType"];
|
|
|
|
|
/**
|
|
|
|
|
* Format
|
|
|
|
|
* @description Format of the provided checkpoint model
|
|
|
|
|
* @default checkpoint
|
|
|
|
|
* @enum {string}
|
|
|
|
|
*/
|
|
|
|
|
format: "checkpoint" | "bnb_quantized_nf4b";
|
|
|
|
|
/**
|
|
|
|
|
* Config Path
|
|
|
|
|
* @description path to the checkpoint model config file
|
|
|
|
|
*/
|
|
|
|
|
config_path: string;
|
|
|
|
|
/**
|
|
|
|
|
* Converted At
|
|
|
|
|
* @description When this model was last converted to diffusers
|
|
|
|
|
*/
|
|
|
|
|
converted_at?: number | null;
|
|
|
|
|
/** @default epsilon */
|
|
|
|
|
prediction_type?: components["schemas"]["SchedulerPredictionType"];
|
|
|
|
|
/**
|
|
|
|
|
* Upcast Attention
|
|
|
|
|
* @default false
|
|
|
|
|
*/
|
|
|
|
|
upcast_attention?: boolean;
|
|
|
|
|
};
|
|
|
|
|
/**
|
|
|
|
|
* MainCheckpointConfig
|
|
|
|
|
* @description Model config for main checkpoint models.
|
|
|
|
@ -9761,11 +9864,11 @@ export type components = {
|
|
|
|
|
variant?: components["schemas"]["ModelVariantType"];
|
|
|
|
|
/**
|
|
|
|
|
* Format
|
|
|
|
|
* @description Format of the provided checkpoint model
|
|
|
|
|
* @default checkpoint
|
|
|
|
|
* @constant
|
|
|
|
|
* @enum {string}
|
|
|
|
|
*/
|
|
|
|
|
format: "checkpoint";
|
|
|
|
|
format: "checkpoint" | "bnb_quantized_nf4b";
|
|
|
|
|
/**
|
|
|
|
|
* Config Path
|
|
|
|
|
* @description path to the checkpoint model config file
|
|
|
|
@ -10670,7 +10773,7 @@ export type components = {
|
|
|
|
|
* @description Storage format of model.
|
|
|
|
|
* @enum {string}
|
|
|
|
|
*/
|
|
|
|
|
ModelFormat: "diffusers" | "checkpoint" | "lycoris" | "onnx" | "olive" | "embedding_file" | "embedding_folder" | "invokeai" | "t5_encoder" | "t5_encoder_8b" | "t5_encoder_4b";
|
|
|
|
|
ModelFormat: "diffusers" | "checkpoint" | "lycoris" | "onnx" | "olive" | "embedding_file" | "embedding_folder" | "invokeai" | "t5_encoder" | "t5_encoder_8b" | "t5_encoder_4b" | "bnb_quantized_nf4b";
|
|
|
|
|
/** ModelIdentifierField */
|
|
|
|
|
ModelIdentifierField: {
|
|
|
|
|
/**
|
|
|
|
@ -10970,7 +11073,7 @@ export type components = {
|
|
|
|
|
* Config Out
|
|
|
|
|
* @description After successful installation, this will hold the configuration object.
|
|
|
|
|
*/
|
|
|
|
|
config_out?: (components["schemas"]["MainDiffusersConfig"] | components["schemas"]["MainCheckpointConfig"] | components["schemas"]["VAEDiffusersConfig"] | components["schemas"]["VAECheckpointConfig"] | components["schemas"]["ControlNetDiffusersConfig"] | components["schemas"]["ControlNetCheckpointConfig"] | components["schemas"]["LoRALyCORISConfig"] | components["schemas"]["LoRADiffusersConfig"] | components["schemas"]["T5EncoderConfig"] | components["schemas"]["TextualInversionFileConfig"] | components["schemas"]["TextualInversionFolderConfig"] | components["schemas"]["IPAdapterInvokeAIConfig"] | components["schemas"]["IPAdapterCheckpointConfig"] | components["schemas"]["T2IAdapterConfig"] | components["schemas"]["SpandrelImageToImageConfig"] | components["schemas"]["CLIPVisionDiffusersConfig"] | components["schemas"]["CLIPEmbedDiffusersConfig"]) | null;
|
|
|
|
|
config_out?: (components["schemas"]["MainDiffusersConfig"] | components["schemas"]["MainCheckpointConfig"] | components["schemas"]["MainBnbQuantized4bCheckpointConfig"] | components["schemas"]["VAEDiffusersConfig"] | components["schemas"]["VAECheckpointConfig"] | components["schemas"]["ControlNetDiffusersConfig"] | components["schemas"]["ControlNetCheckpointConfig"] | components["schemas"]["LoRALyCORISConfig"] | components["schemas"]["LoRADiffusersConfig"] | components["schemas"]["T5EncoderConfig"] | components["schemas"]["TextualInversionFileConfig"] | components["schemas"]["TextualInversionFolderConfig"] | components["schemas"]["IPAdapterInvokeAIConfig"] | components["schemas"]["IPAdapterCheckpointConfig"] | components["schemas"]["T2IAdapterConfig"] | components["schemas"]["SpandrelImageToImageConfig"] | components["schemas"]["CLIPVisionDiffusersConfig"] | components["schemas"]["CLIPEmbedDiffusersConfig"]) | null;
|
|
|
|
|
/**
|
|
|
|
|
* Inplace
|
|
|
|
|
* @description Leave model in its current location; otherwise install under models directory
|
|
|
|
@ -11056,7 +11159,7 @@ export type components = {
|
|
|
|
|
* Config
|
|
|
|
|
* @description The model's config
|
|
|
|
|
*/
|
|
|
|
|
config: components["schemas"]["MainDiffusersConfig"] | components["schemas"]["MainCheckpointConfig"] | components["schemas"]["VAEDiffusersConfig"] | components["schemas"]["VAECheckpointConfig"] | components["schemas"]["ControlNetDiffusersConfig"] | components["schemas"]["ControlNetCheckpointConfig"] | components["schemas"]["LoRALyCORISConfig"] | components["schemas"]["LoRADiffusersConfig"] | components["schemas"]["T5EncoderConfig"] | components["schemas"]["TextualInversionFileConfig"] | components["schemas"]["TextualInversionFolderConfig"] | components["schemas"]["IPAdapterInvokeAIConfig"] | components["schemas"]["IPAdapterCheckpointConfig"] | components["schemas"]["T2IAdapterConfig"] | components["schemas"]["SpandrelImageToImageConfig"] | components["schemas"]["CLIPVisionDiffusersConfig"] | components["schemas"]["CLIPEmbedDiffusersConfig"];
|
|
|
|
|
config: components["schemas"]["MainDiffusersConfig"] | components["schemas"]["MainCheckpointConfig"] | components["schemas"]["MainBnbQuantized4bCheckpointConfig"] | components["schemas"]["VAEDiffusersConfig"] | components["schemas"]["VAECheckpointConfig"] | components["schemas"]["ControlNetDiffusersConfig"] | components["schemas"]["ControlNetCheckpointConfig"] | components["schemas"]["LoRALyCORISConfig"] | components["schemas"]["LoRADiffusersConfig"] | components["schemas"]["T5EncoderConfig"] | components["schemas"]["TextualInversionFileConfig"] | components["schemas"]["TextualInversionFolderConfig"] | components["schemas"]["IPAdapterInvokeAIConfig"] | components["schemas"]["IPAdapterCheckpointConfig"] | components["schemas"]["T2IAdapterConfig"] | components["schemas"]["SpandrelImageToImageConfig"] | components["schemas"]["CLIPVisionDiffusersConfig"] | components["schemas"]["CLIPEmbedDiffusersConfig"];
|
|
|
|
|
/**
|
|
|
|
|
* @description The submodel type, if any
|
|
|
|
|
* @default null
|
|
|
|
@ -11077,7 +11180,7 @@ export type components = {
|
|
|
|
|
* Config
|
|
|
|
|
* @description The model's config
|
|
|
|
|
*/
|
|
|
|
|
config: components["schemas"]["MainDiffusersConfig"] | components["schemas"]["MainCheckpointConfig"] | components["schemas"]["VAEDiffusersConfig"] | components["schemas"]["VAECheckpointConfig"] | components["schemas"]["ControlNetDiffusersConfig"] | components["schemas"]["ControlNetCheckpointConfig"] | components["schemas"]["LoRALyCORISConfig"] | components["schemas"]["LoRADiffusersConfig"] | components["schemas"]["T5EncoderConfig"] | components["schemas"]["TextualInversionFileConfig"] | components["schemas"]["TextualInversionFolderConfig"] | components["schemas"]["IPAdapterInvokeAIConfig"] | components["schemas"]["IPAdapterCheckpointConfig"] | components["schemas"]["T2IAdapterConfig"] | components["schemas"]["SpandrelImageToImageConfig"] | components["schemas"]["CLIPVisionDiffusersConfig"] | components["schemas"]["CLIPEmbedDiffusersConfig"];
|
|
|
|
|
config: components["schemas"]["MainDiffusersConfig"] | components["schemas"]["MainCheckpointConfig"] | components["schemas"]["MainBnbQuantized4bCheckpointConfig"] | components["schemas"]["VAEDiffusersConfig"] | components["schemas"]["VAECheckpointConfig"] | components["schemas"]["ControlNetDiffusersConfig"] | components["schemas"]["ControlNetCheckpointConfig"] | components["schemas"]["LoRALyCORISConfig"] | components["schemas"]["LoRADiffusersConfig"] | components["schemas"]["T5EncoderConfig"] | components["schemas"]["TextualInversionFileConfig"] | components["schemas"]["TextualInversionFolderConfig"] | components["schemas"]["IPAdapterInvokeAIConfig"] | components["schemas"]["IPAdapterCheckpointConfig"] | components["schemas"]["T2IAdapterConfig"] | components["schemas"]["SpandrelImageToImageConfig"] | components["schemas"]["CLIPVisionDiffusersConfig"] | components["schemas"]["CLIPEmbedDiffusersConfig"];
|
|
|
|
|
/**
|
|
|
|
|
* @description The submodel type, if any
|
|
|
|
|
* @default null
|
|
|
|
@ -11218,7 +11321,7 @@ export type components = {
|
|
|
|
|
*/
|
|
|
|
|
ModelsList: {
|
|
|
|
|
/** Models */
|
|
|
|
|
models: (components["schemas"]["MainDiffusersConfig"] | components["schemas"]["MainCheckpointConfig"] | components["schemas"]["VAEDiffusersConfig"] | components["schemas"]["VAECheckpointConfig"] | components["schemas"]["ControlNetDiffusersConfig"] | components["schemas"]["ControlNetCheckpointConfig"] | components["schemas"]["LoRALyCORISConfig"] | components["schemas"]["LoRADiffusersConfig"] | components["schemas"]["T5EncoderConfig"] | components["schemas"]["TextualInversionFileConfig"] | components["schemas"]["TextualInversionFolderConfig"] | components["schemas"]["IPAdapterInvokeAIConfig"] | components["schemas"]["IPAdapterCheckpointConfig"] | components["schemas"]["T2IAdapterConfig"] | components["schemas"]["SpandrelImageToImageConfig"] | components["schemas"]["CLIPVisionDiffusersConfig"] | components["schemas"]["CLIPEmbedDiffusersConfig"])[];
|
|
|
|
|
models: (components["schemas"]["MainDiffusersConfig"] | components["schemas"]["MainCheckpointConfig"] | components["schemas"]["MainBnbQuantized4bCheckpointConfig"] | components["schemas"]["VAEDiffusersConfig"] | components["schemas"]["VAECheckpointConfig"] | components["schemas"]["ControlNetDiffusersConfig"] | components["schemas"]["ControlNetCheckpointConfig"] | components["schemas"]["LoRALyCORISConfig"] | components["schemas"]["LoRADiffusersConfig"] | components["schemas"]["T5EncoderConfig"] | components["schemas"]["TextualInversionFileConfig"] | components["schemas"]["TextualInversionFolderConfig"] | components["schemas"]["IPAdapterInvokeAIConfig"] | components["schemas"]["IPAdapterCheckpointConfig"] | components["schemas"]["T2IAdapterConfig"] | components["schemas"]["SpandrelImageToImageConfig"] | components["schemas"]["CLIPVisionDiffusersConfig"] | components["schemas"]["CLIPEmbedDiffusersConfig"])[];
|
|
|
|
|
};
|
|
|
|
|
/**
|
|
|
|
|
* Multiply Integers
|
|
|
|
@ -15087,11 +15190,11 @@ export type components = {
|
|
|
|
|
cover_image?: string | null;
|
|
|
|
|
/**
|
|
|
|
|
* Format
|
|
|
|
|
* @description Format of the provided checkpoint model
|
|
|
|
|
* @default checkpoint
|
|
|
|
|
* @constant
|
|
|
|
|
* @enum {string}
|
|
|
|
|
*/
|
|
|
|
|
format: "checkpoint";
|
|
|
|
|
format: "checkpoint" | "bnb_quantized_nf4b";
|
|
|
|
|
/**
|
|
|
|
|
* Config Path
|
|
|
|
|
* @description path to the checkpoint model config file
|
|
|
|
@ -15619,7 +15722,7 @@ export interface operations {
|
|
|
|
|
[name: string]: unknown;
|
|
|
|
|
};
|
|
|
|
|
content: {
|
|
|
|
|
"application/json": components["schemas"]["MainDiffusersConfig"] | components["schemas"]["MainCheckpointConfig"] | components["schemas"]["VAEDiffusersConfig"] | components["schemas"]["VAECheckpointConfig"] | components["schemas"]["ControlNetDiffusersConfig"] | components["schemas"]["ControlNetCheckpointConfig"] | components["schemas"]["LoRALyCORISConfig"] | components["schemas"]["LoRADiffusersConfig"] | components["schemas"]["T5EncoderConfig"] | components["schemas"]["TextualInversionFileConfig"] | components["schemas"]["TextualInversionFolderConfig"] | components["schemas"]["IPAdapterInvokeAIConfig"] | components["schemas"]["IPAdapterCheckpointConfig"] | components["schemas"]["T2IAdapterConfig"] | components["schemas"]["SpandrelImageToImageConfig"] | components["schemas"]["CLIPVisionDiffusersConfig"] | components["schemas"]["CLIPEmbedDiffusersConfig"];
|
|
|
|
|
"application/json": components["schemas"]["MainDiffusersConfig"] | components["schemas"]["MainCheckpointConfig"] | components["schemas"]["MainBnbQuantized4bCheckpointConfig"] | components["schemas"]["VAEDiffusersConfig"] | components["schemas"]["VAECheckpointConfig"] | components["schemas"]["ControlNetDiffusersConfig"] | components["schemas"]["ControlNetCheckpointConfig"] | components["schemas"]["LoRALyCORISConfig"] | components["schemas"]["LoRADiffusersConfig"] | components["schemas"]["T5EncoderConfig"] | components["schemas"]["TextualInversionFileConfig"] | components["schemas"]["TextualInversionFolderConfig"] | components["schemas"]["IPAdapterInvokeAIConfig"] | components["schemas"]["IPAdapterCheckpointConfig"] | components["schemas"]["T2IAdapterConfig"] | components["schemas"]["SpandrelImageToImageConfig"] | components["schemas"]["CLIPVisionDiffusersConfig"] | components["schemas"]["CLIPEmbedDiffusersConfig"];
|
|
|
|
|
};
|
|
|
|
|
};
|
|
|
|
|
/** @description Validation Error */
|
|
|
|
@ -15651,7 +15754,7 @@ export interface operations {
|
|
|
|
|
[name: string]: unknown;
|
|
|
|
|
};
|
|
|
|
|
content: {
|
|
|
|
|
"application/json": components["schemas"]["MainDiffusersConfig"] | components["schemas"]["MainCheckpointConfig"] | components["schemas"]["VAEDiffusersConfig"] | components["schemas"]["VAECheckpointConfig"] | components["schemas"]["ControlNetDiffusersConfig"] | components["schemas"]["ControlNetCheckpointConfig"] | components["schemas"]["LoRALyCORISConfig"] | components["schemas"]["LoRADiffusersConfig"] | components["schemas"]["T5EncoderConfig"] | components["schemas"]["TextualInversionFileConfig"] | components["schemas"]["TextualInversionFolderConfig"] | components["schemas"]["IPAdapterInvokeAIConfig"] | components["schemas"]["IPAdapterCheckpointConfig"] | components["schemas"]["T2IAdapterConfig"] | components["schemas"]["SpandrelImageToImageConfig"] | components["schemas"]["CLIPVisionDiffusersConfig"] | components["schemas"]["CLIPEmbedDiffusersConfig"];
|
|
|
|
|
"application/json": components["schemas"]["MainDiffusersConfig"] | components["schemas"]["MainCheckpointConfig"] | components["schemas"]["MainBnbQuantized4bCheckpointConfig"] | components["schemas"]["VAEDiffusersConfig"] | components["schemas"]["VAECheckpointConfig"] | components["schemas"]["ControlNetDiffusersConfig"] | components["schemas"]["ControlNetCheckpointConfig"] | components["schemas"]["LoRALyCORISConfig"] | components["schemas"]["LoRADiffusersConfig"] | components["schemas"]["T5EncoderConfig"] | components["schemas"]["TextualInversionFileConfig"] | components["schemas"]["TextualInversionFolderConfig"] | components["schemas"]["IPAdapterInvokeAIConfig"] | components["schemas"]["IPAdapterCheckpointConfig"] | components["schemas"]["T2IAdapterConfig"] | components["schemas"]["SpandrelImageToImageConfig"] | components["schemas"]["CLIPVisionDiffusersConfig"] | components["schemas"]["CLIPEmbedDiffusersConfig"];
|
|
|
|
|
};
|
|
|
|
|
};
|
|
|
|
|
/** @description Bad request */
|
|
|
|
@ -15748,7 +15851,7 @@ export interface operations {
|
|
|
|
|
[name: string]: unknown;
|
|
|
|
|
};
|
|
|
|
|
content: {
|
|
|
|
|
"application/json": components["schemas"]["MainDiffusersConfig"] | components["schemas"]["MainCheckpointConfig"] | components["schemas"]["VAEDiffusersConfig"] | components["schemas"]["VAECheckpointConfig"] | components["schemas"]["ControlNetDiffusersConfig"] | components["schemas"]["ControlNetCheckpointConfig"] | components["schemas"]["LoRALyCORISConfig"] | components["schemas"]["LoRADiffusersConfig"] | components["schemas"]["T5EncoderConfig"] | components["schemas"]["TextualInversionFileConfig"] | components["schemas"]["TextualInversionFolderConfig"] | components["schemas"]["IPAdapterInvokeAIConfig"] | components["schemas"]["IPAdapterCheckpointConfig"] | components["schemas"]["T2IAdapterConfig"] | components["schemas"]["SpandrelImageToImageConfig"] | components["schemas"]["CLIPVisionDiffusersConfig"] | components["schemas"]["CLIPEmbedDiffusersConfig"];
|
|
|
|
|
"application/json": components["schemas"]["MainDiffusersConfig"] | components["schemas"]["MainCheckpointConfig"] | components["schemas"]["MainBnbQuantized4bCheckpointConfig"] | components["schemas"]["VAEDiffusersConfig"] | components["schemas"]["VAECheckpointConfig"] | components["schemas"]["ControlNetDiffusersConfig"] | components["schemas"]["ControlNetCheckpointConfig"] | components["schemas"]["LoRALyCORISConfig"] | components["schemas"]["LoRADiffusersConfig"] | components["schemas"]["T5EncoderConfig"] | components["schemas"]["TextualInversionFileConfig"] | components["schemas"]["TextualInversionFolderConfig"] | components["schemas"]["IPAdapterInvokeAIConfig"] | components["schemas"]["IPAdapterCheckpointConfig"] | components["schemas"]["T2IAdapterConfig"] | components["schemas"]["SpandrelImageToImageConfig"] | components["schemas"]["CLIPVisionDiffusersConfig"] | components["schemas"]["CLIPEmbedDiffusersConfig"];
|
|
|
|
|
};
|
|
|
|
|
};
|
|
|
|
|
/** @description Bad request */
|
|
|
|
@ -16248,7 +16351,7 @@ export interface operations {
|
|
|
|
|
[name: string]: unknown;
|
|
|
|
|
};
|
|
|
|
|
content: {
|
|
|
|
|
"application/json": components["schemas"]["MainDiffusersConfig"] | components["schemas"]["MainCheckpointConfig"] | components["schemas"]["VAEDiffusersConfig"] | components["schemas"]["VAECheckpointConfig"] | components["schemas"]["ControlNetDiffusersConfig"] | components["schemas"]["ControlNetCheckpointConfig"] | components["schemas"]["LoRALyCORISConfig"] | components["schemas"]["LoRADiffusersConfig"] | components["schemas"]["T5EncoderConfig"] | components["schemas"]["TextualInversionFileConfig"] | components["schemas"]["TextualInversionFolderConfig"] | components["schemas"]["IPAdapterInvokeAIConfig"] | components["schemas"]["IPAdapterCheckpointConfig"] | components["schemas"]["T2IAdapterConfig"] | components["schemas"]["SpandrelImageToImageConfig"] | components["schemas"]["CLIPVisionDiffusersConfig"] | components["schemas"]["CLIPEmbedDiffusersConfig"];
|
|
|
|
|
"application/json": components["schemas"]["MainDiffusersConfig"] | components["schemas"]["MainCheckpointConfig"] | components["schemas"]["MainBnbQuantized4bCheckpointConfig"] | components["schemas"]["VAEDiffusersConfig"] | components["schemas"]["VAECheckpointConfig"] | components["schemas"]["ControlNetDiffusersConfig"] | components["schemas"]["ControlNetCheckpointConfig"] | components["schemas"]["LoRALyCORISConfig"] | components["schemas"]["LoRADiffusersConfig"] | components["schemas"]["T5EncoderConfig"] | components["schemas"]["TextualInversionFileConfig"] | components["schemas"]["TextualInversionFolderConfig"] | components["schemas"]["IPAdapterInvokeAIConfig"] | components["schemas"]["IPAdapterCheckpointConfig"] | components["schemas"]["T2IAdapterConfig"] | components["schemas"]["SpandrelImageToImageConfig"] | components["schemas"]["CLIPVisionDiffusersConfig"] | components["schemas"]["CLIPEmbedDiffusersConfig"];
|
|
|
|
|
};
|
|
|
|
|
};
|
|
|
|
|
/** @description Bad request */
|
|
|
|
|