mirror of
https://github.com/invoke-ai/InvokeAI
synced 2024-08-30 20:32:17 +00:00
chore(ui): regen api schema
This commit is contained in:
parent
132829c88f
commit
11378a9236
@ -648,6 +648,13 @@ export type components = {
|
|||||||
* @default 1
|
* @default 1
|
||||||
*/
|
*/
|
||||||
end_step_percent: number;
|
end_step_percent: number;
|
||||||
|
/**
|
||||||
|
* Control Mode
|
||||||
|
* @description The contorl mode to use
|
||||||
|
* @default balanced
|
||||||
|
* @enum {string}
|
||||||
|
*/
|
||||||
|
control_mode?: "balanced" | "more_prompt" | "more_control" | "unbalanced";
|
||||||
};
|
};
|
||||||
/**
|
/**
|
||||||
* ControlNetInvocation
|
* ControlNetInvocation
|
||||||
@ -701,6 +708,13 @@ export type components = {
|
|||||||
* @default 1
|
* @default 1
|
||||||
*/
|
*/
|
||||||
end_step_percent?: number;
|
end_step_percent?: number;
|
||||||
|
/**
|
||||||
|
* Control Mode
|
||||||
|
* @description The control mode used
|
||||||
|
* @default balanced
|
||||||
|
* @enum {string}
|
||||||
|
*/
|
||||||
|
control_mode?: "balanced" | "more_prompt" | "more_control" | "unbalanced";
|
||||||
};
|
};
|
||||||
/** ControlNetModelConfig */
|
/** ControlNetModelConfig */
|
||||||
ControlNetModelConfig: {
|
ControlNetModelConfig: {
|
||||||
@ -2903,7 +2917,7 @@ export type components = {
|
|||||||
/** ModelsList */
|
/** ModelsList */
|
||||||
ModelsList: {
|
ModelsList: {
|
||||||
/** Models */
|
/** Models */
|
||||||
models: (components["schemas"]["StableDiffusion1ModelCheckpointConfig"] | components["schemas"]["StableDiffusion1ModelDiffusersConfig"] | components["schemas"]["VaeModelConfig"] | components["schemas"]["LoRAModelConfig"] | components["schemas"]["ControlNetModelConfig"] | components["schemas"]["TextualInversionModelConfig"] | components["schemas"]["StableDiffusion2ModelDiffusersConfig"] | components["schemas"]["StableDiffusion2ModelCheckpointConfig"])[];
|
models: (components["schemas"]["StableDiffusion1ModelDiffusersConfig"] | components["schemas"]["StableDiffusion1ModelCheckpointConfig"] | components["schemas"]["VaeModelConfig"] | components["schemas"]["LoRAModelConfig"] | components["schemas"]["ControlNetModelConfig"] | components["schemas"]["TextualInversionModelConfig"] | components["schemas"]["StableDiffusion2ModelCheckpointConfig"] | components["schemas"]["StableDiffusion2ModelDiffusersConfig"])[];
|
||||||
};
|
};
|
||||||
/**
|
/**
|
||||||
* MultiplyInvocation
|
* MultiplyInvocation
|
||||||
@ -4163,18 +4177,18 @@ export type components = {
|
|||||||
*/
|
*/
|
||||||
image?: components["schemas"]["ImageField"];
|
image?: components["schemas"]["ImageField"];
|
||||||
};
|
};
|
||||||
/**
|
|
||||||
* StableDiffusion1ModelFormat
|
|
||||||
* @description An enumeration.
|
|
||||||
* @enum {string}
|
|
||||||
*/
|
|
||||||
StableDiffusion1ModelFormat: "checkpoint" | "diffusers";
|
|
||||||
/**
|
/**
|
||||||
* StableDiffusion2ModelFormat
|
* StableDiffusion2ModelFormat
|
||||||
* @description An enumeration.
|
* @description An enumeration.
|
||||||
* @enum {string}
|
* @enum {string}
|
||||||
*/
|
*/
|
||||||
StableDiffusion2ModelFormat: "checkpoint" | "diffusers";
|
StableDiffusion2ModelFormat: "checkpoint" | "diffusers";
|
||||||
|
/**
|
||||||
|
* StableDiffusion1ModelFormat
|
||||||
|
* @description An enumeration.
|
||||||
|
* @enum {string}
|
||||||
|
*/
|
||||||
|
StableDiffusion1ModelFormat: "checkpoint" | "diffusers";
|
||||||
};
|
};
|
||||||
responses: never;
|
responses: never;
|
||||||
parameters: never;
|
parameters: never;
|
||||||
|
Loading…
Reference in New Issue
Block a user