mirror of
https://github.com/invoke-ai/InvokeAI
synced 2024-08-30 20:32:17 +00:00
chore(ui): typegen
This commit is contained in:
parent
35d14fc0f9
commit
089ada8cd1
341
invokeai/frontend/web/src/services/api/schema.d.ts
vendored
341
invokeai/frontend/web/src/services/api/schema.d.ts
vendored
@ -317,7 +317,7 @@ export type components = {
|
||||
* Added Image Names
|
||||
* @description The image names that were added to the board
|
||||
*/
|
||||
added_image_names: (string)[];
|
||||
added_image_names: string[];
|
||||
};
|
||||
/**
|
||||
* Add Integers
|
||||
@ -363,22 +363,22 @@ export type components = {
|
||||
* Infill Methods
|
||||
* @description List of available infill methods
|
||||
*/
|
||||
infill_methods: (string)[];
|
||||
infill_methods: string[];
|
||||
/**
|
||||
* Upscaling Methods
|
||||
* @description List of upscaling methods
|
||||
*/
|
||||
upscaling_methods: (components["schemas"]["Upscaler"])[];
|
||||
upscaling_methods: components["schemas"]["Upscaler"][];
|
||||
/**
|
||||
* Nsfw Methods
|
||||
* @description List of NSFW checking methods
|
||||
*/
|
||||
nsfw_methods: (string)[];
|
||||
nsfw_methods: string[];
|
||||
/**
|
||||
* Watermarking Methods
|
||||
* @description List of invisible watermark methods
|
||||
*/
|
||||
watermarking_methods: (string)[];
|
||||
watermarking_methods: string[];
|
||||
};
|
||||
/**
|
||||
* AppVersion
|
||||
@ -397,6 +397,45 @@ export type components = {
|
||||
* @enum {string}
|
||||
*/
|
||||
BaseModelType: "sd-1" | "sd-2" | "sdxl" | "sdxl-refiner";
|
||||
/**
|
||||
* Blend Latents
|
||||
* @description Blend two latents using a given alpha. Latents must have same size.
|
||||
*/
|
||||
BlendLatentsInvocation: {
|
||||
/**
|
||||
* Id
|
||||
* @description The id of this node. Must be unique among all nodes.
|
||||
*/
|
||||
id: string;
|
||||
/**
|
||||
* Is Intermediate
|
||||
* @description Whether or not this node is an intermediate node.
|
||||
* @default false
|
||||
*/
|
||||
is_intermediate?: boolean;
|
||||
/**
|
||||
* Type
|
||||
* @default lblend
|
||||
* @enum {string}
|
||||
*/
|
||||
type: "lblend";
|
||||
/**
|
||||
* Latents A
|
||||
* @description Latents tensor
|
||||
*/
|
||||
latents_a?: components["schemas"]["LatentsField"];
|
||||
/**
|
||||
* Latents B
|
||||
* @description Latents tensor
|
||||
*/
|
||||
latents_b?: components["schemas"]["LatentsField"];
|
||||
/**
|
||||
* Alpha
|
||||
* @description Blending factor. 0.0 = use input A only, 1.0 = use input B only, 0.5 = 50% mix of input A and input B.
|
||||
* @default 0.5
|
||||
*/
|
||||
alpha?: number;
|
||||
};
|
||||
/** BoardChanges */
|
||||
BoardChanges: {
|
||||
/**
|
||||
@ -475,7 +514,7 @@ export type components = {
|
||||
* Image Names
|
||||
* @description The names of the images to add
|
||||
*/
|
||||
image_names: (string)[];
|
||||
image_names: string[];
|
||||
};
|
||||
/** Body_delete_images_from_list */
|
||||
Body_delete_images_from_list: {
|
||||
@ -483,7 +522,7 @@ export type components = {
|
||||
* Image Names
|
||||
* @description The list of names of images to delete
|
||||
*/
|
||||
image_names: (string)[];
|
||||
image_names: string[];
|
||||
};
|
||||
/** Body_import_model */
|
||||
Body_import_model: {
|
||||
@ -506,7 +545,7 @@ export type components = {
|
||||
* Model Names
|
||||
* @description model name
|
||||
*/
|
||||
model_names: (string)[];
|
||||
model_names: string[];
|
||||
/**
|
||||
* Merged Model Name
|
||||
* @description Name of destination model
|
||||
@ -546,7 +585,7 @@ export type components = {
|
||||
* Image Names
|
||||
* @description The names of the images to remove
|
||||
*/
|
||||
image_names: (string)[];
|
||||
image_names: string[];
|
||||
};
|
||||
/** Body_star_images_in_list */
|
||||
Body_star_images_in_list: {
|
||||
@ -554,7 +593,7 @@ export type components = {
|
||||
* Image Names
|
||||
* @description The list of names of images to star
|
||||
*/
|
||||
image_names: (string)[];
|
||||
image_names: string[];
|
||||
};
|
||||
/** Body_unstar_images_in_list */
|
||||
Body_unstar_images_in_list: {
|
||||
@ -562,7 +601,7 @@ export type components = {
|
||||
* Image Names
|
||||
* @description The list of names of images to unstar
|
||||
*/
|
||||
image_names: (string)[];
|
||||
image_names: string[];
|
||||
};
|
||||
/** Body_upload_image */
|
||||
Body_upload_image: {
|
||||
@ -598,7 +637,7 @@ export type components = {
|
||||
* Collection
|
||||
* @description The collection of boolean values
|
||||
*/
|
||||
collection?: (boolean)[];
|
||||
collection?: boolean[];
|
||||
};
|
||||
/**
|
||||
* BooleanCollectionOutput
|
||||
@ -615,7 +654,7 @@ export type components = {
|
||||
* Collection
|
||||
* @description The output boolean collection
|
||||
*/
|
||||
collection: (boolean)[];
|
||||
collection: boolean[];
|
||||
};
|
||||
/**
|
||||
* Boolean Primitive
|
||||
@ -724,7 +763,7 @@ export type components = {
|
||||
* Loras
|
||||
* @description Loras to apply on model loading
|
||||
*/
|
||||
loras: (components["schemas"]["LoraInfo"])[];
|
||||
loras: components["schemas"]["LoraInfo"][];
|
||||
};
|
||||
/**
|
||||
* CLIP Skip
|
||||
@ -808,7 +847,7 @@ export type components = {
|
||||
* Collection
|
||||
* @description The collection, will be provided on execution
|
||||
*/
|
||||
collection?: (unknown)[];
|
||||
collection?: unknown[];
|
||||
};
|
||||
/**
|
||||
* CollectInvocationOutput
|
||||
@ -825,7 +864,7 @@ export type components = {
|
||||
* Collection
|
||||
* @description The collection of input items
|
||||
*/
|
||||
collection: (unknown)[];
|
||||
collection: unknown[];
|
||||
};
|
||||
/**
|
||||
* ColorCollectionOutput
|
||||
@ -842,7 +881,7 @@ export type components = {
|
||||
* Collection
|
||||
* @description The output colors
|
||||
*/
|
||||
collection: (components["schemas"]["ColorField"])[];
|
||||
collection: components["schemas"]["ColorField"][];
|
||||
};
|
||||
/**
|
||||
* Color Correct
|
||||
@ -1027,7 +1066,7 @@ export type components = {
|
||||
* @description The collection of conditioning tensors
|
||||
* @default 0
|
||||
*/
|
||||
collection?: (components["schemas"]["ConditioningField"])[];
|
||||
collection?: components["schemas"]["ConditioningField"][];
|
||||
};
|
||||
/**
|
||||
* ConditioningCollectionOutput
|
||||
@ -1044,7 +1083,7 @@ export type components = {
|
||||
* Collection
|
||||
* @description The output conditioning tensors
|
||||
*/
|
||||
collection: (components["schemas"]["ConditioningField"])[];
|
||||
collection: components["schemas"]["ConditioningField"][];
|
||||
};
|
||||
/**
|
||||
* ConditioningField
|
||||
@ -1177,7 +1216,7 @@ export type components = {
|
||||
* @description The weight given to the ControlNet
|
||||
* @default 1
|
||||
*/
|
||||
control_weight?: number | (number)[];
|
||||
control_weight?: number | number[];
|
||||
/**
|
||||
* Begin Step Percent
|
||||
* @description When the ControlNet is first applied (% of total steps)
|
||||
@ -1243,7 +1282,7 @@ export type components = {
|
||||
* @description The weight given to the ControlNet
|
||||
* @default 1
|
||||
*/
|
||||
control_weight?: number | (number)[];
|
||||
control_weight?: number | number[];
|
||||
/**
|
||||
* Begin Step Percent
|
||||
* @description When the ControlNet is first applied (% of total steps)
|
||||
@ -1420,12 +1459,12 @@ export type components = {
|
||||
* Controlnets
|
||||
* @description The ControlNets used for inference
|
||||
*/
|
||||
controlnets: (components["schemas"]["ControlField"])[];
|
||||
controlnets: components["schemas"]["ControlField"][];
|
||||
/**
|
||||
* Loras
|
||||
* @description The LoRAs used for inference
|
||||
*/
|
||||
loras: (components["schemas"]["LoRAMetadataField"])[];
|
||||
loras: components["schemas"]["LoRAMetadataField"][];
|
||||
/**
|
||||
* Vae
|
||||
* @description The VAE used for decoding, if the main model's default was not used
|
||||
@ -1531,17 +1570,17 @@ export type components = {
|
||||
* Deleted Board Images
|
||||
* @description The image names of the board-images relationships that were deleted.
|
||||
*/
|
||||
deleted_board_images: (string)[];
|
||||
deleted_board_images: string[];
|
||||
/**
|
||||
* Deleted Images
|
||||
* @description The names of the images that were deleted.
|
||||
*/
|
||||
deleted_images: (string)[];
|
||||
deleted_images: string[];
|
||||
};
|
||||
/** DeleteImagesFromListResult */
|
||||
DeleteImagesFromListResult: {
|
||||
/** Deleted Images */
|
||||
deleted_images: (string)[];
|
||||
deleted_images: string[];
|
||||
};
|
||||
/**
|
||||
* Denoise Latents
|
||||
@ -1581,7 +1620,7 @@ export type components = {
|
||||
* @description Classifier-Free Guidance scale
|
||||
* @default 7.5
|
||||
*/
|
||||
cfg_scale?: number | (number)[];
|
||||
cfg_scale?: number | number[];
|
||||
/**
|
||||
* Denoising Start
|
||||
* @description When to start denoising, expressed a percentage of total steps
|
||||
@ -1605,7 +1644,7 @@ export type components = {
|
||||
* Control
|
||||
* @description ControlNet(s) to apply
|
||||
*/
|
||||
control?: components["schemas"]["ControlField"] | (components["schemas"]["ControlField"])[];
|
||||
control?: components["schemas"]["ControlField"] | components["schemas"]["ControlField"][];
|
||||
/**
|
||||
* Latents
|
||||
* @description Latents tensor
|
||||
@ -1794,7 +1833,7 @@ export type components = {
|
||||
* Collection
|
||||
* @description The collection of float values
|
||||
*/
|
||||
collection?: (number)[];
|
||||
collection?: number[];
|
||||
};
|
||||
/**
|
||||
* FloatCollectionOutput
|
||||
@ -1811,7 +1850,7 @@ export type components = {
|
||||
* Collection
|
||||
* @description The float collection
|
||||
*/
|
||||
collection: (number)[];
|
||||
collection: number[];
|
||||
};
|
||||
/**
|
||||
* Float Primitive
|
||||
@ -1912,13 +1951,13 @@ export type components = {
|
||||
* @description The nodes in this graph
|
||||
*/
|
||||
nodes?: {
|
||||
[key: string]: (components["schemas"]["BooleanInvocation"] | components["schemas"]["BooleanCollectionInvocation"] | components["schemas"]["IntegerInvocation"] | components["schemas"]["IntegerCollectionInvocation"] | components["schemas"]["FloatInvocation"] | components["schemas"]["FloatCollectionInvocation"] | components["schemas"]["StringInvocation"] | components["schemas"]["StringCollectionInvocation"] | components["schemas"]["ImageInvocation"] | components["schemas"]["ImageCollectionInvocation"] | components["schemas"]["LatentsInvocation"] | components["schemas"]["LatentsCollectionInvocation"] | components["schemas"]["ColorInvocation"] | components["schemas"]["ConditioningInvocation"] | components["schemas"]["ConditioningCollectionInvocation"] | components["schemas"]["ControlNetInvocation"] | components["schemas"]["ImageProcessorInvocation"] | components["schemas"]["MainModelLoaderInvocation"] | components["schemas"]["LoraLoaderInvocation"] | components["schemas"]["SDXLLoraLoaderInvocation"] | components["schemas"]["VaeLoaderInvocation"] | components["schemas"]["MetadataAccumulatorInvocation"] | components["schemas"]["SDXLModelLoaderInvocation"] | components["schemas"]["SDXLRefinerModelLoaderInvocation"] | components["schemas"]["CompelInvocation"] | components["schemas"]["SDXLCompelPromptInvocation"] | components["schemas"]["SDXLRefinerCompelPromptInvocation"] | components["schemas"]["ClipSkipInvocation"] | components["schemas"]["DenoiseLatentsInvocation"] | components["schemas"]["LatentsToImageInvocation"] | components["schemas"]["ResizeLatentsInvocation"] | components["schemas"]["ScaleLatentsInvocation"] | components["schemas"]["ImageToLatentsInvocation"] | components["schemas"]["ONNXPromptInvocation"] | components["schemas"]["ONNXTextToLatentsInvocation"] | components["schemas"]["ONNXLatentsToImageInvocation"] | components["schemas"]["OnnxModelLoaderInvocation"] | components["schemas"]["ShowImageInvocation"] | components["schemas"]["ImageCropInvocation"] | components["schemas"]["ImagePasteInvocation"] | components["schemas"]["MaskFromAlphaInvocation"] | components["schemas"]["ImageMultiplyInvocation"] | components["schemas"]["ImageChannelInvocation"] | components["schemas"]["ImageConvertInvocation"] | components["schemas"]["ImageBlurInvocation"] | components["schemas"]["ImageResizeInvocation"] | components["schemas"]["ImageScaleInvocation"] | components["schemas"]["ImageLerpInvocation"] | components["schemas"]["ImageInverseLerpInvocation"] | components["schemas"]["ImageNSFWBlurInvocation"] | components["schemas"]["ImageWatermarkInvocation"] | components["schemas"]["MaskEdgeInvocation"] | components["schemas"]["MaskCombineInvocation"] | components["schemas"]["ColorCorrectInvocation"] | components["schemas"]["ImageHueAdjustmentInvocation"] | components["schemas"]["ImageLuminosityAdjustmentInvocation"] | components["schemas"]["ImageSaturationAdjustmentInvocation"] | components["schemas"]["DynamicPromptInvocation"] | components["schemas"]["PromptsFromFileInvocation"] | components["schemas"]["CvInpaintInvocation"] | components["schemas"]["FloatLinearRangeInvocation"] | components["schemas"]["StepParamEasingInvocation"] | components["schemas"]["AddInvocation"] | components["schemas"]["SubtractInvocation"] | components["schemas"]["MultiplyInvocation"] | components["schemas"]["DivideInvocation"] | components["schemas"]["RandomIntInvocation"] | components["schemas"]["NoiseInvocation"] | components["schemas"]["RangeInvocation"] | components["schemas"]["RangeOfSizeInvocation"] | components["schemas"]["RandomRangeInvocation"] | components["schemas"]["ESRGANInvocation"] | components["schemas"]["InfillColorInvocation"] | components["schemas"]["InfillTileInvocation"] | components["schemas"]["InfillPatchMatchInvocation"] | components["schemas"]["GraphInvocation"] | components["schemas"]["IterateInvocation"] | components["schemas"]["CollectInvocation"] | components["schemas"]["CannyImageProcessorInvocation"] | components["schemas"]["HedImageProcessorInvocation"] | components["schemas"]["LineartImageProcessorInvocation"] | components["schemas"]["LineartAnimeImageProcessorInvocation"] | components["schemas"]["OpenposeImageProcessorInvocation"] | components["schemas"]["MidasDepthImageProcessorInvocation"] | components["schemas"]["NormalbaeImageProcessorInvocation"] | components["schemas"]["MlsdImageProcessorInvocation"] | components["schemas"]["PidiImageProcessorInvocation"] | components["schemas"]["ContentShuffleImageProcessorInvocation"] | components["schemas"]["ZoeDepthImageProcessorInvocation"] | components["schemas"]["MediapipeFaceProcessorInvocation"] | components["schemas"]["LeresImageProcessorInvocation"] | components["schemas"]["TileResamplerProcessorInvocation"] | components["schemas"]["SegmentAnythingProcessorInvocation"]) | undefined;
|
||||
[key: string]: components["schemas"]["BooleanInvocation"] | components["schemas"]["BooleanCollectionInvocation"] | components["schemas"]["IntegerInvocation"] | components["schemas"]["IntegerCollectionInvocation"] | components["schemas"]["FloatInvocation"] | components["schemas"]["FloatCollectionInvocation"] | components["schemas"]["StringInvocation"] | components["schemas"]["StringCollectionInvocation"] | components["schemas"]["ImageInvocation"] | components["schemas"]["ImageCollectionInvocation"] | components["schemas"]["LatentsInvocation"] | components["schemas"]["LatentsCollectionInvocation"] | components["schemas"]["ColorInvocation"] | components["schemas"]["ConditioningInvocation"] | components["schemas"]["ConditioningCollectionInvocation"] | components["schemas"]["ControlNetInvocation"] | components["schemas"]["ImageProcessorInvocation"] | components["schemas"]["MainModelLoaderInvocation"] | components["schemas"]["LoraLoaderInvocation"] | components["schemas"]["SDXLLoraLoaderInvocation"] | components["schemas"]["VaeLoaderInvocation"] | components["schemas"]["MetadataAccumulatorInvocation"] | components["schemas"]["SDXLModelLoaderInvocation"] | components["schemas"]["SDXLRefinerModelLoaderInvocation"] | components["schemas"]["CompelInvocation"] | components["schemas"]["SDXLCompelPromptInvocation"] | components["schemas"]["SDXLRefinerCompelPromptInvocation"] | components["schemas"]["ClipSkipInvocation"] | components["schemas"]["DenoiseLatentsInvocation"] | components["schemas"]["LatentsToImageInvocation"] | components["schemas"]["ResizeLatentsInvocation"] | components["schemas"]["ScaleLatentsInvocation"] | components["schemas"]["ImageToLatentsInvocation"] | components["schemas"]["BlendLatentsInvocation"] | components["schemas"]["ONNXPromptInvocation"] | components["schemas"]["ONNXTextToLatentsInvocation"] | components["schemas"]["ONNXLatentsToImageInvocation"] | components["schemas"]["OnnxModelLoaderInvocation"] | components["schemas"]["ShowImageInvocation"] | components["schemas"]["ImageCropInvocation"] | components["schemas"]["ImagePasteInvocation"] | components["schemas"]["MaskFromAlphaInvocation"] | components["schemas"]["ImageMultiplyInvocation"] | components["schemas"]["ImageChannelInvocation"] | components["schemas"]["ImageConvertInvocation"] | components["schemas"]["ImageBlurInvocation"] | components["schemas"]["ImageResizeInvocation"] | components["schemas"]["ImageScaleInvocation"] | components["schemas"]["ImageLerpInvocation"] | components["schemas"]["ImageInverseLerpInvocation"] | components["schemas"]["ImageNSFWBlurInvocation"] | components["schemas"]["ImageWatermarkInvocation"] | components["schemas"]["MaskEdgeInvocation"] | components["schemas"]["MaskCombineInvocation"] | components["schemas"]["ColorCorrectInvocation"] | components["schemas"]["ImageHueAdjustmentInvocation"] | components["schemas"]["ImageLuminosityAdjustmentInvocation"] | components["schemas"]["ImageSaturationAdjustmentInvocation"] | components["schemas"]["DynamicPromptInvocation"] | components["schemas"]["PromptsFromFileInvocation"] | components["schemas"]["CvInpaintInvocation"] | components["schemas"]["FloatLinearRangeInvocation"] | components["schemas"]["StepParamEasingInvocation"] | components["schemas"]["AddInvocation"] | components["schemas"]["SubtractInvocation"] | components["schemas"]["MultiplyInvocation"] | components["schemas"]["DivideInvocation"] | components["schemas"]["RandomIntInvocation"] | components["schemas"]["NoiseInvocation"] | components["schemas"]["RangeInvocation"] | components["schemas"]["RangeOfSizeInvocation"] | components["schemas"]["RandomRangeInvocation"] | components["schemas"]["ESRGANInvocation"] | components["schemas"]["InfillColorInvocation"] | components["schemas"]["InfillTileInvocation"] | components["schemas"]["InfillPatchMatchInvocation"] | components["schemas"]["GraphInvocation"] | components["schemas"]["IterateInvocation"] | components["schemas"]["CollectInvocation"] | components["schemas"]["CannyImageProcessorInvocation"] | components["schemas"]["HedImageProcessorInvocation"] | components["schemas"]["LineartImageProcessorInvocation"] | components["schemas"]["LineartAnimeImageProcessorInvocation"] | components["schemas"]["OpenposeImageProcessorInvocation"] | components["schemas"]["MidasDepthImageProcessorInvocation"] | components["schemas"]["NormalbaeImageProcessorInvocation"] | components["schemas"]["MlsdImageProcessorInvocation"] | components["schemas"]["PidiImageProcessorInvocation"] | components["schemas"]["ContentShuffleImageProcessorInvocation"] | components["schemas"]["ZoeDepthImageProcessorInvocation"] | components["schemas"]["MediapipeFaceProcessorInvocation"] | components["schemas"]["LeresImageProcessorInvocation"] | components["schemas"]["TileResamplerProcessorInvocation"] | components["schemas"]["SegmentAnythingProcessorInvocation"];
|
||||
};
|
||||
/**
|
||||
* Edges
|
||||
* @description The connections between nodes and their fields in this graph
|
||||
*/
|
||||
edges?: (components["schemas"]["Edge"])[];
|
||||
edges?: components["schemas"]["Edge"][];
|
||||
};
|
||||
/**
|
||||
* GraphExecutionState
|
||||
@ -1944,39 +1983,39 @@ export type components = {
|
||||
* Executed
|
||||
* @description The set of node ids that have been executed
|
||||
*/
|
||||
executed: (string)[];
|
||||
executed: string[];
|
||||
/**
|
||||
* Executed History
|
||||
* @description The list of node ids that have been executed, in order of execution
|
||||
*/
|
||||
executed_history: (string)[];
|
||||
executed_history: string[];
|
||||
/**
|
||||
* Results
|
||||
* @description The results of node executions
|
||||
*/
|
||||
results: {
|
||||
[key: string]: (components["schemas"]["BooleanOutput"] | components["schemas"]["BooleanCollectionOutput"] | components["schemas"]["IntegerOutput"] | components["schemas"]["IntegerCollectionOutput"] | components["schemas"]["FloatOutput"] | components["schemas"]["FloatCollectionOutput"] | components["schemas"]["StringOutput"] | components["schemas"]["StringCollectionOutput"] | components["schemas"]["ImageOutput"] | components["schemas"]["ImageCollectionOutput"] | components["schemas"]["LatentsOutput"] | components["schemas"]["LatentsCollectionOutput"] | components["schemas"]["ColorOutput"] | components["schemas"]["ColorCollectionOutput"] | components["schemas"]["ConditioningOutput"] | components["schemas"]["ConditioningCollectionOutput"] | components["schemas"]["ControlOutput"] | components["schemas"]["ModelLoaderOutput"] | components["schemas"]["LoraLoaderOutput"] | components["schemas"]["SDXLLoraLoaderOutput"] | components["schemas"]["VaeLoaderOutput"] | components["schemas"]["MetadataAccumulatorOutput"] | components["schemas"]["SDXLModelLoaderOutput"] | components["schemas"]["SDXLRefinerModelLoaderOutput"] | components["schemas"]["ClipSkipInvocationOutput"] | components["schemas"]["ONNXModelLoaderOutput"] | components["schemas"]["NoiseOutput"] | components["schemas"]["GraphInvocationOutput"] | components["schemas"]["IterateInvocationOutput"] | components["schemas"]["CollectInvocationOutput"]) | undefined;
|
||||
[key: string]: components["schemas"]["BooleanOutput"] | components["schemas"]["BooleanCollectionOutput"] | components["schemas"]["IntegerOutput"] | components["schemas"]["IntegerCollectionOutput"] | components["schemas"]["FloatOutput"] | components["schemas"]["FloatCollectionOutput"] | components["schemas"]["StringOutput"] | components["schemas"]["StringCollectionOutput"] | components["schemas"]["ImageOutput"] | components["schemas"]["ImageCollectionOutput"] | components["schemas"]["LatentsOutput"] | components["schemas"]["LatentsCollectionOutput"] | components["schemas"]["ColorOutput"] | components["schemas"]["ColorCollectionOutput"] | components["schemas"]["ConditioningOutput"] | components["schemas"]["ConditioningCollectionOutput"] | components["schemas"]["ControlOutput"] | components["schemas"]["ModelLoaderOutput"] | components["schemas"]["LoraLoaderOutput"] | components["schemas"]["SDXLLoraLoaderOutput"] | components["schemas"]["VaeLoaderOutput"] | components["schemas"]["MetadataAccumulatorOutput"] | components["schemas"]["SDXLModelLoaderOutput"] | components["schemas"]["SDXLRefinerModelLoaderOutput"] | components["schemas"]["ClipSkipInvocationOutput"] | components["schemas"]["ONNXModelLoaderOutput"] | components["schemas"]["NoiseOutput"] | components["schemas"]["GraphInvocationOutput"] | components["schemas"]["IterateInvocationOutput"] | components["schemas"]["CollectInvocationOutput"];
|
||||
};
|
||||
/**
|
||||
* Errors
|
||||
* @description Errors raised when executing nodes
|
||||
*/
|
||||
errors: {
|
||||
[key: string]: string | undefined;
|
||||
[key: string]: string;
|
||||
};
|
||||
/**
|
||||
* Prepared Source Mapping
|
||||
* @description The map of prepared nodes to original graph nodes
|
||||
*/
|
||||
prepared_source_mapping: {
|
||||
[key: string]: string | undefined;
|
||||
[key: string]: string;
|
||||
};
|
||||
/**
|
||||
* Source Prepared Mapping
|
||||
* @description The map of original graph nodes to prepared nodes
|
||||
*/
|
||||
source_prepared_mapping: {
|
||||
[key: string]: (string)[] | undefined;
|
||||
[key: string]: string[];
|
||||
};
|
||||
};
|
||||
/**
|
||||
@ -2022,7 +2061,7 @@ export type components = {
|
||||
/** HTTPValidationError */
|
||||
HTTPValidationError: {
|
||||
/** Detail */
|
||||
detail?: (components["schemas"]["ValidationError"])[];
|
||||
detail?: components["schemas"]["ValidationError"][];
|
||||
};
|
||||
/**
|
||||
* HED (softedge) Processor
|
||||
@ -2185,7 +2224,7 @@ export type components = {
|
||||
* @description The collection of image values
|
||||
* @default 0
|
||||
*/
|
||||
collection?: (components["schemas"]["ImageField"])[];
|
||||
collection?: components["schemas"]["ImageField"][];
|
||||
};
|
||||
/**
|
||||
* ImageCollectionOutput
|
||||
@ -2202,7 +2241,7 @@ export type components = {
|
||||
* Collection
|
||||
* @description The output images
|
||||
*/
|
||||
collection: (components["schemas"]["ImageField"])[];
|
||||
collection: components["schemas"]["ImageField"][];
|
||||
};
|
||||
/**
|
||||
* Convert Image Mode
|
||||
@ -3002,7 +3041,7 @@ export type components = {
|
||||
* Updated Image Names
|
||||
* @description The image names that were updated
|
||||
*/
|
||||
updated_image_names: (string)[];
|
||||
updated_image_names: string[];
|
||||
};
|
||||
/**
|
||||
* Solid Color Infill
|
||||
@ -3137,7 +3176,7 @@ export type components = {
|
||||
* @description The collection of integer values
|
||||
* @default 0
|
||||
*/
|
||||
collection?: (number)[];
|
||||
collection?: number[];
|
||||
};
|
||||
/**
|
||||
* IntegerCollectionOutput
|
||||
@ -3154,7 +3193,7 @@ export type components = {
|
||||
* Collection
|
||||
* @description The int collection
|
||||
*/
|
||||
collection: (number)[];
|
||||
collection: number[];
|
||||
};
|
||||
/**
|
||||
* Integer Primitive
|
||||
@ -3228,7 +3267,7 @@ export type components = {
|
||||
* Collection
|
||||
* @description The list of items to iterate over
|
||||
*/
|
||||
collection?: (unknown)[];
|
||||
collection?: unknown[];
|
||||
/**
|
||||
* Index
|
||||
* @description The index, will be provided on executed iterators
|
||||
@ -3279,7 +3318,7 @@ export type components = {
|
||||
* Collection
|
||||
* @description The collection of latents tensors
|
||||
*/
|
||||
collection?: (components["schemas"]["LatentsField"])[];
|
||||
collection?: components["schemas"]["LatentsField"][];
|
||||
};
|
||||
/**
|
||||
* LatentsCollectionOutput
|
||||
@ -3296,7 +3335,7 @@ export type components = {
|
||||
* Collection
|
||||
* @description Latents tensor
|
||||
*/
|
||||
collection: (components["schemas"]["LatentsField"])[];
|
||||
collection: components["schemas"]["LatentsField"][];
|
||||
};
|
||||
/**
|
||||
* LatentsField
|
||||
@ -3996,12 +4035,12 @@ export type components = {
|
||||
* Controlnets
|
||||
* @description The ControlNets used for inference
|
||||
*/
|
||||
controlnets?: (components["schemas"]["ControlField"])[];
|
||||
controlnets?: components["schemas"]["ControlField"][];
|
||||
/**
|
||||
* Loras
|
||||
* @description The LoRAs used for inference
|
||||
*/
|
||||
loras?: (components["schemas"]["LoRAMetadataField"])[];
|
||||
loras?: components["schemas"]["LoRAMetadataField"][];
|
||||
/**
|
||||
* Strength
|
||||
* @description The strength used for latents-to-latents
|
||||
@ -4584,7 +4623,7 @@ export type components = {
|
||||
* @description Classifier-Free Guidance scale
|
||||
* @default 7.5
|
||||
*/
|
||||
cfg_scale?: number | (number)[];
|
||||
cfg_scale?: number | number[];
|
||||
/**
|
||||
* Scheduler
|
||||
* @description Scheduler to use during inference
|
||||
@ -4608,7 +4647,7 @@ export type components = {
|
||||
* Control
|
||||
* @description ControlNet(s) to apply
|
||||
*/
|
||||
control?: components["schemas"]["ControlField"] | (components["schemas"]["ControlField"])[];
|
||||
control?: components["schemas"]["ControlField"] | components["schemas"]["ControlField"][];
|
||||
};
|
||||
/**
|
||||
* OffsetPaginatedResults[BoardDTO]
|
||||
@ -4619,7 +4658,7 @@ export type components = {
|
||||
* Items
|
||||
* @description Items
|
||||
*/
|
||||
items: (components["schemas"]["BoardDTO"])[];
|
||||
items: components["schemas"]["BoardDTO"][];
|
||||
/**
|
||||
* Offset
|
||||
* @description Offset from which to retrieve items
|
||||
@ -4645,7 +4684,7 @@ export type components = {
|
||||
* Items
|
||||
* @description Items
|
||||
*/
|
||||
items: (components["schemas"]["ImageDTO"])[];
|
||||
items: components["schemas"]["ImageDTO"][];
|
||||
/**
|
||||
* Offset
|
||||
* @description Offset from which to retrieve items
|
||||
@ -4760,7 +4799,7 @@ export type components = {
|
||||
* Items
|
||||
* @description Items
|
||||
*/
|
||||
items: (components["schemas"]["GraphExecutionState"])[];
|
||||
items: components["schemas"]["GraphExecutionState"][];
|
||||
/**
|
||||
* Page
|
||||
* @description Current Page
|
||||
@ -5053,7 +5092,7 @@ export type components = {
|
||||
* Removed Image Names
|
||||
* @description The image names that were removed from their board
|
||||
*/
|
||||
removed_image_names: (string)[];
|
||||
removed_image_names: string[];
|
||||
};
|
||||
/**
|
||||
* Resize Latents
|
||||
@ -5808,7 +5847,7 @@ export type components = {
|
||||
* Collection
|
||||
* @description The collection of string values
|
||||
*/
|
||||
collection?: (string)[];
|
||||
collection?: string[];
|
||||
};
|
||||
/**
|
||||
* StringCollectionOutput
|
||||
@ -5825,7 +5864,7 @@ export type components = {
|
||||
* Collection
|
||||
* @description The output strings
|
||||
*/
|
||||
collection: (string)[];
|
||||
collection: string[];
|
||||
};
|
||||
/**
|
||||
* String Primitive
|
||||
@ -5982,7 +6021,7 @@ export type components = {
|
||||
* Loras
|
||||
* @description Loras to apply on model loading
|
||||
*/
|
||||
loras: (components["schemas"]["LoraInfo"])[];
|
||||
loras: components["schemas"]["LoraInfo"][];
|
||||
};
|
||||
/** Upscaler */
|
||||
Upscaler: {
|
||||
@ -5995,7 +6034,7 @@ export type components = {
|
||||
* Upscaling Models
|
||||
* @description List of upscaling models for this method
|
||||
*/
|
||||
upscaling_models: (string)[];
|
||||
upscaling_models: string[];
|
||||
};
|
||||
/**
|
||||
* VAEModelField
|
||||
@ -6134,7 +6173,7 @@ export type components = {
|
||||
* Tags
|
||||
* @description The tags to display in the UI
|
||||
*/
|
||||
tags?: (string)[];
|
||||
tags?: string[];
|
||||
/**
|
||||
* Title
|
||||
* @description The display name of the node
|
||||
@ -6190,17 +6229,11 @@ export type components = {
|
||||
ui_type?: components["schemas"]["UIType"];
|
||||
};
|
||||
/**
|
||||
* ControlNetModelFormat
|
||||
* StableDiffusion1ModelFormat
|
||||
* @description An enumeration.
|
||||
* @enum {string}
|
||||
*/
|
||||
ControlNetModelFormat: "checkpoint" | "diffusers";
|
||||
/**
|
||||
* StableDiffusion2ModelFormat
|
||||
* @description An enumeration.
|
||||
* @enum {string}
|
||||
*/
|
||||
StableDiffusion2ModelFormat: "checkpoint" | "diffusers";
|
||||
StableDiffusion1ModelFormat: "checkpoint" | "diffusers";
|
||||
/**
|
||||
* StableDiffusionOnnxModelFormat
|
||||
* @description An enumeration.
|
||||
@ -6208,17 +6241,23 @@ export type components = {
|
||||
*/
|
||||
StableDiffusionOnnxModelFormat: "olive" | "onnx";
|
||||
/**
|
||||
* StableDiffusion1ModelFormat
|
||||
* ControlNetModelFormat
|
||||
* @description An enumeration.
|
||||
* @enum {string}
|
||||
*/
|
||||
StableDiffusion1ModelFormat: "checkpoint" | "diffusers";
|
||||
ControlNetModelFormat: "checkpoint" | "diffusers";
|
||||
/**
|
||||
* StableDiffusionXLModelFormat
|
||||
* @description An enumeration.
|
||||
* @enum {string}
|
||||
*/
|
||||
StableDiffusionXLModelFormat: "checkpoint" | "diffusers";
|
||||
/**
|
||||
* StableDiffusion2ModelFormat
|
||||
* @description An enumeration.
|
||||
* @enum {string}
|
||||
*/
|
||||
StableDiffusion2ModelFormat: "checkpoint" | "diffusers";
|
||||
};
|
||||
responses: never;
|
||||
parameters: never;
|
||||
@ -6227,6 +6266,8 @@ export type components = {
|
||||
pathItems: never;
|
||||
};
|
||||
|
||||
export type $defs = Record<string, never>;
|
||||
|
||||
export type external = Record<string, never>;
|
||||
|
||||
export type operations = {
|
||||
@ -6279,7 +6320,9 @@ export type operations = {
|
||||
};
|
||||
};
|
||||
/** @description Invalid json */
|
||||
400: never;
|
||||
400: {
|
||||
content: never;
|
||||
};
|
||||
/** @description Validation Error */
|
||||
422: {
|
||||
content: {
|
||||
@ -6307,7 +6350,9 @@ export type operations = {
|
||||
};
|
||||
};
|
||||
/** @description Session not found */
|
||||
404: never;
|
||||
404: {
|
||||
content: never;
|
||||
};
|
||||
/** @description Validation Error */
|
||||
422: {
|
||||
content: {
|
||||
@ -6329,7 +6374,7 @@ export type operations = {
|
||||
};
|
||||
requestBody: {
|
||||
content: {
|
||||
"application/json": components["schemas"]["BooleanInvocation"] | components["schemas"]["BooleanCollectionInvocation"] | components["schemas"]["IntegerInvocation"] | components["schemas"]["IntegerCollectionInvocation"] | components["schemas"]["FloatInvocation"] | components["schemas"]["FloatCollectionInvocation"] | components["schemas"]["StringInvocation"] | components["schemas"]["StringCollectionInvocation"] | components["schemas"]["ImageInvocation"] | components["schemas"]["ImageCollectionInvocation"] | components["schemas"]["LatentsInvocation"] | components["schemas"]["LatentsCollectionInvocation"] | components["schemas"]["ColorInvocation"] | components["schemas"]["ConditioningInvocation"] | components["schemas"]["ConditioningCollectionInvocation"] | components["schemas"]["ControlNetInvocation"] | components["schemas"]["ImageProcessorInvocation"] | components["schemas"]["MainModelLoaderInvocation"] | components["schemas"]["LoraLoaderInvocation"] | components["schemas"]["SDXLLoraLoaderInvocation"] | components["schemas"]["VaeLoaderInvocation"] | components["schemas"]["MetadataAccumulatorInvocation"] | components["schemas"]["SDXLModelLoaderInvocation"] | components["schemas"]["SDXLRefinerModelLoaderInvocation"] | components["schemas"]["CompelInvocation"] | components["schemas"]["SDXLCompelPromptInvocation"] | components["schemas"]["SDXLRefinerCompelPromptInvocation"] | components["schemas"]["ClipSkipInvocation"] | components["schemas"]["DenoiseLatentsInvocation"] | components["schemas"]["LatentsToImageInvocation"] | components["schemas"]["ResizeLatentsInvocation"] | components["schemas"]["ScaleLatentsInvocation"] | components["schemas"]["ImageToLatentsInvocation"] | components["schemas"]["ONNXPromptInvocation"] | components["schemas"]["ONNXTextToLatentsInvocation"] | components["schemas"]["ONNXLatentsToImageInvocation"] | components["schemas"]["OnnxModelLoaderInvocation"] | components["schemas"]["ShowImageInvocation"] | components["schemas"]["ImageCropInvocation"] | components["schemas"]["ImagePasteInvocation"] | components["schemas"]["MaskFromAlphaInvocation"] | components["schemas"]["ImageMultiplyInvocation"] | components["schemas"]["ImageChannelInvocation"] | components["schemas"]["ImageConvertInvocation"] | components["schemas"]["ImageBlurInvocation"] | components["schemas"]["ImageResizeInvocation"] | components["schemas"]["ImageScaleInvocation"] | components["schemas"]["ImageLerpInvocation"] | components["schemas"]["ImageInverseLerpInvocation"] | components["schemas"]["ImageNSFWBlurInvocation"] | components["schemas"]["ImageWatermarkInvocation"] | components["schemas"]["MaskEdgeInvocation"] | components["schemas"]["MaskCombineInvocation"] | components["schemas"]["ColorCorrectInvocation"] | components["schemas"]["ImageHueAdjustmentInvocation"] | components["schemas"]["ImageLuminosityAdjustmentInvocation"] | components["schemas"]["ImageSaturationAdjustmentInvocation"] | components["schemas"]["DynamicPromptInvocation"] | components["schemas"]["PromptsFromFileInvocation"] | components["schemas"]["CvInpaintInvocation"] | components["schemas"]["FloatLinearRangeInvocation"] | components["schemas"]["StepParamEasingInvocation"] | components["schemas"]["AddInvocation"] | components["schemas"]["SubtractInvocation"] | components["schemas"]["MultiplyInvocation"] | components["schemas"]["DivideInvocation"] | components["schemas"]["RandomIntInvocation"] | components["schemas"]["NoiseInvocation"] | components["schemas"]["RangeInvocation"] | components["schemas"]["RangeOfSizeInvocation"] | components["schemas"]["RandomRangeInvocation"] | components["schemas"]["ESRGANInvocation"] | components["schemas"]["InfillColorInvocation"] | components["schemas"]["InfillTileInvocation"] | components["schemas"]["InfillPatchMatchInvocation"] | components["schemas"]["GraphInvocation"] | components["schemas"]["IterateInvocation"] | components["schemas"]["CollectInvocation"] | components["schemas"]["CannyImageProcessorInvocation"] | components["schemas"]["HedImageProcessorInvocation"] | components["schemas"]["LineartImageProcessorInvocation"] | components["schemas"]["LineartAnimeImageProcessorInvocation"] | components["schemas"]["OpenposeImageProcessorInvocation"] | components["schemas"]["MidasDepthImageProcessorInvocation"] | components["schemas"]["NormalbaeImageProcessorInvocation"] | components["schemas"]["MlsdImageProcessorInvocation"] | components["schemas"]["PidiImageProcessorInvocation"] | components["schemas"]["ContentShuffleImageProcessorInvocation"] | components["schemas"]["ZoeDepthImageProcessorInvocation"] | components["schemas"]["MediapipeFaceProcessorInvocation"] | components["schemas"]["LeresImageProcessorInvocation"] | components["schemas"]["TileResamplerProcessorInvocation"] | components["schemas"]["SegmentAnythingProcessorInvocation"];
|
||||
"application/json": components["schemas"]["BooleanInvocation"] | components["schemas"]["BooleanCollectionInvocation"] | components["schemas"]["IntegerInvocation"] | components["schemas"]["IntegerCollectionInvocation"] | components["schemas"]["FloatInvocation"] | components["schemas"]["FloatCollectionInvocation"] | components["schemas"]["StringInvocation"] | components["schemas"]["StringCollectionInvocation"] | components["schemas"]["ImageInvocation"] | components["schemas"]["ImageCollectionInvocation"] | components["schemas"]["LatentsInvocation"] | components["schemas"]["LatentsCollectionInvocation"] | components["schemas"]["ColorInvocation"] | components["schemas"]["ConditioningInvocation"] | components["schemas"]["ConditioningCollectionInvocation"] | components["schemas"]["ControlNetInvocation"] | components["schemas"]["ImageProcessorInvocation"] | components["schemas"]["MainModelLoaderInvocation"] | components["schemas"]["LoraLoaderInvocation"] | components["schemas"]["SDXLLoraLoaderInvocation"] | components["schemas"]["VaeLoaderInvocation"] | components["schemas"]["MetadataAccumulatorInvocation"] | components["schemas"]["SDXLModelLoaderInvocation"] | components["schemas"]["SDXLRefinerModelLoaderInvocation"] | components["schemas"]["CompelInvocation"] | components["schemas"]["SDXLCompelPromptInvocation"] | components["schemas"]["SDXLRefinerCompelPromptInvocation"] | components["schemas"]["ClipSkipInvocation"] | components["schemas"]["DenoiseLatentsInvocation"] | components["schemas"]["LatentsToImageInvocation"] | components["schemas"]["ResizeLatentsInvocation"] | components["schemas"]["ScaleLatentsInvocation"] | components["schemas"]["ImageToLatentsInvocation"] | components["schemas"]["BlendLatentsInvocation"] | components["schemas"]["ONNXPromptInvocation"] | components["schemas"]["ONNXTextToLatentsInvocation"] | components["schemas"]["ONNXLatentsToImageInvocation"] | components["schemas"]["OnnxModelLoaderInvocation"] | components["schemas"]["ShowImageInvocation"] | components["schemas"]["ImageCropInvocation"] | components["schemas"]["ImagePasteInvocation"] | components["schemas"]["MaskFromAlphaInvocation"] | components["schemas"]["ImageMultiplyInvocation"] | components["schemas"]["ImageChannelInvocation"] | components["schemas"]["ImageConvertInvocation"] | components["schemas"]["ImageBlurInvocation"] | components["schemas"]["ImageResizeInvocation"] | components["schemas"]["ImageScaleInvocation"] | components["schemas"]["ImageLerpInvocation"] | components["schemas"]["ImageInverseLerpInvocation"] | components["schemas"]["ImageNSFWBlurInvocation"] | components["schemas"]["ImageWatermarkInvocation"] | components["schemas"]["MaskEdgeInvocation"] | components["schemas"]["MaskCombineInvocation"] | components["schemas"]["ColorCorrectInvocation"] | components["schemas"]["ImageHueAdjustmentInvocation"] | components["schemas"]["ImageLuminosityAdjustmentInvocation"] | components["schemas"]["ImageSaturationAdjustmentInvocation"] | components["schemas"]["DynamicPromptInvocation"] | components["schemas"]["PromptsFromFileInvocation"] | components["schemas"]["CvInpaintInvocation"] | components["schemas"]["FloatLinearRangeInvocation"] | components["schemas"]["StepParamEasingInvocation"] | components["schemas"]["AddInvocation"] | components["schemas"]["SubtractInvocation"] | components["schemas"]["MultiplyInvocation"] | components["schemas"]["DivideInvocation"] | components["schemas"]["RandomIntInvocation"] | components["schemas"]["NoiseInvocation"] | components["schemas"]["RangeInvocation"] | components["schemas"]["RangeOfSizeInvocation"] | components["schemas"]["RandomRangeInvocation"] | components["schemas"]["ESRGANInvocation"] | components["schemas"]["InfillColorInvocation"] | components["schemas"]["InfillTileInvocation"] | components["schemas"]["InfillPatchMatchInvocation"] | components["schemas"]["GraphInvocation"] | components["schemas"]["IterateInvocation"] | components["schemas"]["CollectInvocation"] | components["schemas"]["CannyImageProcessorInvocation"] | components["schemas"]["HedImageProcessorInvocation"] | components["schemas"]["LineartImageProcessorInvocation"] | components["schemas"]["LineartAnimeImageProcessorInvocation"] | components["schemas"]["OpenposeImageProcessorInvocation"] | components["schemas"]["MidasDepthImageProcessorInvocation"] | components["schemas"]["NormalbaeImageProcessorInvocation"] | components["schemas"]["MlsdImageProcessorInvocation"] | components["schemas"]["PidiImageProcessorInvocation"] | components["schemas"]["ContentShuffleImageProcessorInvocation"] | components["schemas"]["ZoeDepthImageProcessorInvocation"] | components["schemas"]["MediapipeFaceProcessorInvocation"] | components["schemas"]["LeresImageProcessorInvocation"] | components["schemas"]["TileResamplerProcessorInvocation"] | components["schemas"]["SegmentAnythingProcessorInvocation"];
|
||||
};
|
||||
};
|
||||
responses: {
|
||||
@ -6340,9 +6385,13 @@ export type operations = {
|
||||
};
|
||||
};
|
||||
/** @description Invalid node or link */
|
||||
400: never;
|
||||
400: {
|
||||
content: never;
|
||||
};
|
||||
/** @description Session not found */
|
||||
404: never;
|
||||
404: {
|
||||
content: never;
|
||||
};
|
||||
/** @description Validation Error */
|
||||
422: {
|
||||
content: {
|
||||
@ -6366,7 +6415,7 @@ export type operations = {
|
||||
};
|
||||
requestBody: {
|
||||
content: {
|
||||
"application/json": components["schemas"]["BooleanInvocation"] | components["schemas"]["BooleanCollectionInvocation"] | components["schemas"]["IntegerInvocation"] | components["schemas"]["IntegerCollectionInvocation"] | components["schemas"]["FloatInvocation"] | components["schemas"]["FloatCollectionInvocation"] | components["schemas"]["StringInvocation"] | components["schemas"]["StringCollectionInvocation"] | components["schemas"]["ImageInvocation"] | components["schemas"]["ImageCollectionInvocation"] | components["schemas"]["LatentsInvocation"] | components["schemas"]["LatentsCollectionInvocation"] | components["schemas"]["ColorInvocation"] | components["schemas"]["ConditioningInvocation"] | components["schemas"]["ConditioningCollectionInvocation"] | components["schemas"]["ControlNetInvocation"] | components["schemas"]["ImageProcessorInvocation"] | components["schemas"]["MainModelLoaderInvocation"] | components["schemas"]["LoraLoaderInvocation"] | components["schemas"]["SDXLLoraLoaderInvocation"] | components["schemas"]["VaeLoaderInvocation"] | components["schemas"]["MetadataAccumulatorInvocation"] | components["schemas"]["SDXLModelLoaderInvocation"] | components["schemas"]["SDXLRefinerModelLoaderInvocation"] | components["schemas"]["CompelInvocation"] | components["schemas"]["SDXLCompelPromptInvocation"] | components["schemas"]["SDXLRefinerCompelPromptInvocation"] | components["schemas"]["ClipSkipInvocation"] | components["schemas"]["DenoiseLatentsInvocation"] | components["schemas"]["LatentsToImageInvocation"] | components["schemas"]["ResizeLatentsInvocation"] | components["schemas"]["ScaleLatentsInvocation"] | components["schemas"]["ImageToLatentsInvocation"] | components["schemas"]["ONNXPromptInvocation"] | components["schemas"]["ONNXTextToLatentsInvocation"] | components["schemas"]["ONNXLatentsToImageInvocation"] | components["schemas"]["OnnxModelLoaderInvocation"] | components["schemas"]["ShowImageInvocation"] | components["schemas"]["ImageCropInvocation"] | components["schemas"]["ImagePasteInvocation"] | components["schemas"]["MaskFromAlphaInvocation"] | components["schemas"]["ImageMultiplyInvocation"] | components["schemas"]["ImageChannelInvocation"] | components["schemas"]["ImageConvertInvocation"] | components["schemas"]["ImageBlurInvocation"] | components["schemas"]["ImageResizeInvocation"] | components["schemas"]["ImageScaleInvocation"] | components["schemas"]["ImageLerpInvocation"] | components["schemas"]["ImageInverseLerpInvocation"] | components["schemas"]["ImageNSFWBlurInvocation"] | components["schemas"]["ImageWatermarkInvocation"] | components["schemas"]["MaskEdgeInvocation"] | components["schemas"]["MaskCombineInvocation"] | components["schemas"]["ColorCorrectInvocation"] | components["schemas"]["ImageHueAdjustmentInvocation"] | components["schemas"]["ImageLuminosityAdjustmentInvocation"] | components["schemas"]["ImageSaturationAdjustmentInvocation"] | components["schemas"]["DynamicPromptInvocation"] | components["schemas"]["PromptsFromFileInvocation"] | components["schemas"]["CvInpaintInvocation"] | components["schemas"]["FloatLinearRangeInvocation"] | components["schemas"]["StepParamEasingInvocation"] | components["schemas"]["AddInvocation"] | components["schemas"]["SubtractInvocation"] | components["schemas"]["MultiplyInvocation"] | components["schemas"]["DivideInvocation"] | components["schemas"]["RandomIntInvocation"] | components["schemas"]["NoiseInvocation"] | components["schemas"]["RangeInvocation"] | components["schemas"]["RangeOfSizeInvocation"] | components["schemas"]["RandomRangeInvocation"] | components["schemas"]["ESRGANInvocation"] | components["schemas"]["InfillColorInvocation"] | components["schemas"]["InfillTileInvocation"] | components["schemas"]["InfillPatchMatchInvocation"] | components["schemas"]["GraphInvocation"] | components["schemas"]["IterateInvocation"] | components["schemas"]["CollectInvocation"] | components["schemas"]["CannyImageProcessorInvocation"] | components["schemas"]["HedImageProcessorInvocation"] | components["schemas"]["LineartImageProcessorInvocation"] | components["schemas"]["LineartAnimeImageProcessorInvocation"] | components["schemas"]["OpenposeImageProcessorInvocation"] | components["schemas"]["MidasDepthImageProcessorInvocation"] | components["schemas"]["NormalbaeImageProcessorInvocation"] | components["schemas"]["MlsdImageProcessorInvocation"] | components["schemas"]["PidiImageProcessorInvocation"] | components["schemas"]["ContentShuffleImageProcessorInvocation"] | components["schemas"]["ZoeDepthImageProcessorInvocation"] | components["schemas"]["MediapipeFaceProcessorInvocation"] | components["schemas"]["LeresImageProcessorInvocation"] | components["schemas"]["TileResamplerProcessorInvocation"] | components["schemas"]["SegmentAnythingProcessorInvocation"];
|
||||
"application/json": components["schemas"]["BooleanInvocation"] | components["schemas"]["BooleanCollectionInvocation"] | components["schemas"]["IntegerInvocation"] | components["schemas"]["IntegerCollectionInvocation"] | components["schemas"]["FloatInvocation"] | components["schemas"]["FloatCollectionInvocation"] | components["schemas"]["StringInvocation"] | components["schemas"]["StringCollectionInvocation"] | components["schemas"]["ImageInvocation"] | components["schemas"]["ImageCollectionInvocation"] | components["schemas"]["LatentsInvocation"] | components["schemas"]["LatentsCollectionInvocation"] | components["schemas"]["ColorInvocation"] | components["schemas"]["ConditioningInvocation"] | components["schemas"]["ConditioningCollectionInvocation"] | components["schemas"]["ControlNetInvocation"] | components["schemas"]["ImageProcessorInvocation"] | components["schemas"]["MainModelLoaderInvocation"] | components["schemas"]["LoraLoaderInvocation"] | components["schemas"]["SDXLLoraLoaderInvocation"] | components["schemas"]["VaeLoaderInvocation"] | components["schemas"]["MetadataAccumulatorInvocation"] | components["schemas"]["SDXLModelLoaderInvocation"] | components["schemas"]["SDXLRefinerModelLoaderInvocation"] | components["schemas"]["CompelInvocation"] | components["schemas"]["SDXLCompelPromptInvocation"] | components["schemas"]["SDXLRefinerCompelPromptInvocation"] | components["schemas"]["ClipSkipInvocation"] | components["schemas"]["DenoiseLatentsInvocation"] | components["schemas"]["LatentsToImageInvocation"] | components["schemas"]["ResizeLatentsInvocation"] | components["schemas"]["ScaleLatentsInvocation"] | components["schemas"]["ImageToLatentsInvocation"] | components["schemas"]["BlendLatentsInvocation"] | components["schemas"]["ONNXPromptInvocation"] | components["schemas"]["ONNXTextToLatentsInvocation"] | components["schemas"]["ONNXLatentsToImageInvocation"] | components["schemas"]["OnnxModelLoaderInvocation"] | components["schemas"]["ShowImageInvocation"] | components["schemas"]["ImageCropInvocation"] | components["schemas"]["ImagePasteInvocation"] | components["schemas"]["MaskFromAlphaInvocation"] | components["schemas"]["ImageMultiplyInvocation"] | components["schemas"]["ImageChannelInvocation"] | components["schemas"]["ImageConvertInvocation"] | components["schemas"]["ImageBlurInvocation"] | components["schemas"]["ImageResizeInvocation"] | components["schemas"]["ImageScaleInvocation"] | components["schemas"]["ImageLerpInvocation"] | components["schemas"]["ImageInverseLerpInvocation"] | components["schemas"]["ImageNSFWBlurInvocation"] | components["schemas"]["ImageWatermarkInvocation"] | components["schemas"]["MaskEdgeInvocation"] | components["schemas"]["MaskCombineInvocation"] | components["schemas"]["ColorCorrectInvocation"] | components["schemas"]["ImageHueAdjustmentInvocation"] | components["schemas"]["ImageLuminosityAdjustmentInvocation"] | components["schemas"]["ImageSaturationAdjustmentInvocation"] | components["schemas"]["DynamicPromptInvocation"] | components["schemas"]["PromptsFromFileInvocation"] | components["schemas"]["CvInpaintInvocation"] | components["schemas"]["FloatLinearRangeInvocation"] | components["schemas"]["StepParamEasingInvocation"] | components["schemas"]["AddInvocation"] | components["schemas"]["SubtractInvocation"] | components["schemas"]["MultiplyInvocation"] | components["schemas"]["DivideInvocation"] | components["schemas"]["RandomIntInvocation"] | components["schemas"]["NoiseInvocation"] | components["schemas"]["RangeInvocation"] | components["schemas"]["RangeOfSizeInvocation"] | components["schemas"]["RandomRangeInvocation"] | components["schemas"]["ESRGANInvocation"] | components["schemas"]["InfillColorInvocation"] | components["schemas"]["InfillTileInvocation"] | components["schemas"]["InfillPatchMatchInvocation"] | components["schemas"]["GraphInvocation"] | components["schemas"]["IterateInvocation"] | components["schemas"]["CollectInvocation"] | components["schemas"]["CannyImageProcessorInvocation"] | components["schemas"]["HedImageProcessorInvocation"] | components["schemas"]["LineartImageProcessorInvocation"] | components["schemas"]["LineartAnimeImageProcessorInvocation"] | components["schemas"]["OpenposeImageProcessorInvocation"] | components["schemas"]["MidasDepthImageProcessorInvocation"] | components["schemas"]["NormalbaeImageProcessorInvocation"] | components["schemas"]["MlsdImageProcessorInvocation"] | components["schemas"]["PidiImageProcessorInvocation"] | components["schemas"]["ContentShuffleImageProcessorInvocation"] | components["schemas"]["ZoeDepthImageProcessorInvocation"] | components["schemas"]["MediapipeFaceProcessorInvocation"] | components["schemas"]["LeresImageProcessorInvocation"] | components["schemas"]["TileResamplerProcessorInvocation"] | components["schemas"]["SegmentAnythingProcessorInvocation"];
|
||||
};
|
||||
};
|
||||
responses: {
|
||||
@ -6377,9 +6426,13 @@ export type operations = {
|
||||
};
|
||||
};
|
||||
/** @description Invalid node or link */
|
||||
400: never;
|
||||
400: {
|
||||
content: never;
|
||||
};
|
||||
/** @description Session not found */
|
||||
404: never;
|
||||
404: {
|
||||
content: never;
|
||||
};
|
||||
/** @description Validation Error */
|
||||
422: {
|
||||
content: {
|
||||
@ -6409,9 +6462,13 @@ export type operations = {
|
||||
};
|
||||
};
|
||||
/** @description Invalid node or link */
|
||||
400: never;
|
||||
400: {
|
||||
content: never;
|
||||
};
|
||||
/** @description Session not found */
|
||||
404: never;
|
||||
404: {
|
||||
content: never;
|
||||
};
|
||||
/** @description Validation Error */
|
||||
422: {
|
||||
content: {
|
||||
@ -6444,9 +6501,13 @@ export type operations = {
|
||||
};
|
||||
};
|
||||
/** @description Invalid node or link */
|
||||
400: never;
|
||||
400: {
|
||||
content: never;
|
||||
};
|
||||
/** @description Session not found */
|
||||
404: never;
|
||||
404: {
|
||||
content: never;
|
||||
};
|
||||
/** @description Validation Error */
|
||||
422: {
|
||||
content: {
|
||||
@ -6482,9 +6543,13 @@ export type operations = {
|
||||
};
|
||||
};
|
||||
/** @description Invalid node or link */
|
||||
400: never;
|
||||
400: {
|
||||
content: never;
|
||||
};
|
||||
/** @description Session not found */
|
||||
404: never;
|
||||
404: {
|
||||
content: never;
|
||||
};
|
||||
/** @description Validation Error */
|
||||
422: {
|
||||
content: {
|
||||
@ -6516,11 +6581,17 @@ export type operations = {
|
||||
};
|
||||
};
|
||||
/** @description The invocation is queued */
|
||||
202: never;
|
||||
202: {
|
||||
content: never;
|
||||
};
|
||||
/** @description The session has no invocations ready to invoke */
|
||||
400: never;
|
||||
400: {
|
||||
content: never;
|
||||
};
|
||||
/** @description Session not found */
|
||||
404: never;
|
||||
404: {
|
||||
content: never;
|
||||
};
|
||||
/** @description Validation Error */
|
||||
422: {
|
||||
content: {
|
||||
@ -6548,7 +6619,9 @@ export type operations = {
|
||||
};
|
||||
};
|
||||
/** @description The invocation is canceled */
|
||||
202: never;
|
||||
202: {
|
||||
content: never;
|
||||
};
|
||||
/** @description Validation Error */
|
||||
422: {
|
||||
content: {
|
||||
@ -6565,7 +6638,7 @@ export type operations = {
|
||||
parameters: {
|
||||
query?: {
|
||||
/** @description Base models to include */
|
||||
base_models?: (components["schemas"]["BaseModelType"])[];
|
||||
base_models?: components["schemas"]["BaseModelType"][];
|
||||
/** @description The type of model to get */
|
||||
model_type?: components["schemas"]["ModelType"];
|
||||
};
|
||||
@ -6602,9 +6675,13 @@ export type operations = {
|
||||
};
|
||||
responses: {
|
||||
/** @description Model deleted successfully */
|
||||
204: never;
|
||||
204: {
|
||||
content: never;
|
||||
};
|
||||
/** @description Model not found */
|
||||
404: never;
|
||||
404: {
|
||||
content: never;
|
||||
};
|
||||
/** @description Validation Error */
|
||||
422: {
|
||||
content: {
|
||||
@ -6641,11 +6718,17 @@ export type operations = {
|
||||
};
|
||||
};
|
||||
/** @description Bad request */
|
||||
400: never;
|
||||
400: {
|
||||
content: never;
|
||||
};
|
||||
/** @description The model could not be found */
|
||||
404: never;
|
||||
404: {
|
||||
content: never;
|
||||
};
|
||||
/** @description There is already a model corresponding to the new name */
|
||||
409: never;
|
||||
409: {
|
||||
content: never;
|
||||
};
|
||||
/** @description Validation Error */
|
||||
422: {
|
||||
content: {
|
||||
@ -6672,11 +6755,17 @@ export type operations = {
|
||||
};
|
||||
};
|
||||
/** @description The model could not be found */
|
||||
404: never;
|
||||
404: {
|
||||
content: never;
|
||||
};
|
||||
/** @description There is already a model corresponding to this path or repo_id */
|
||||
409: never;
|
||||
409: {
|
||||
content: never;
|
||||
};
|
||||
/** @description Unrecognized file/folder format */
|
||||
415: never;
|
||||
415: {
|
||||
content: never;
|
||||
};
|
||||
/** @description Validation Error */
|
||||
422: {
|
||||
content: {
|
||||
@ -6684,7 +6773,9 @@ export type operations = {
|
||||
};
|
||||
};
|
||||
/** @description The model appeared to import successfully, but could not be found in the model manager */
|
||||
424: never;
|
||||
424: {
|
||||
content: never;
|
||||
};
|
||||
};
|
||||
};
|
||||
/**
|
||||
@ -6705,9 +6796,13 @@ export type operations = {
|
||||
};
|
||||
};
|
||||
/** @description The model could not be found */
|
||||
404: never;
|
||||
404: {
|
||||
content: never;
|
||||
};
|
||||
/** @description There is already a model corresponding to this path or repo_id */
|
||||
409: never;
|
||||
409: {
|
||||
content: never;
|
||||
};
|
||||
/** @description Validation Error */
|
||||
422: {
|
||||
content: {
|
||||
@ -6715,7 +6810,9 @@ export type operations = {
|
||||
};
|
||||
};
|
||||
/** @description The model appeared to add successfully, but could not be found in the model manager */
|
||||
424: never;
|
||||
424: {
|
||||
content: never;
|
||||
};
|
||||
};
|
||||
};
|
||||
/**
|
||||
@ -6745,9 +6842,13 @@ export type operations = {
|
||||
};
|
||||
};
|
||||
/** @description Bad request */
|
||||
400: never;
|
||||
400: {
|
||||
content: never;
|
||||
};
|
||||
/** @description Model not found */
|
||||
404: never;
|
||||
404: {
|
||||
content: never;
|
||||
};
|
||||
/** @description Validation Error */
|
||||
422: {
|
||||
content: {
|
||||
@ -6768,11 +6869,13 @@ export type operations = {
|
||||
/** @description Directory searched successfully */
|
||||
200: {
|
||||
content: {
|
||||
"application/json": (string)[];
|
||||
"application/json": string[];
|
||||
};
|
||||
};
|
||||
/** @description Invalid directory path */
|
||||
404: never;
|
||||
404: {
|
||||
content: never;
|
||||
};
|
||||
/** @description Validation Error */
|
||||
422: {
|
||||
content: {
|
||||
@ -6790,7 +6893,7 @@ export type operations = {
|
||||
/** @description paths retrieved successfully */
|
||||
200: {
|
||||
content: {
|
||||
"application/json": (string)[];
|
||||
"application/json": string[];
|
||||
};
|
||||
};
|
||||
};
|
||||
@ -6834,9 +6937,13 @@ export type operations = {
|
||||
};
|
||||
};
|
||||
/** @description Incompatible models */
|
||||
400: never;
|
||||
400: {
|
||||
content: never;
|
||||
};
|
||||
/** @description One or more models not found */
|
||||
404: never;
|
||||
404: {
|
||||
content: never;
|
||||
};
|
||||
/** @description Validation Error */
|
||||
422: {
|
||||
content: {
|
||||
@ -6877,7 +6984,9 @@ export type operations = {
|
||||
};
|
||||
};
|
||||
/** @description Image upload failed */
|
||||
415: never;
|
||||
415: {
|
||||
content: never;
|
||||
};
|
||||
/** @description Validation Error */
|
||||
422: {
|
||||
content: {
|
||||
@ -7028,7 +7137,9 @@ export type operations = {
|
||||
};
|
||||
};
|
||||
/** @description Image not found */
|
||||
404: never;
|
||||
404: {
|
||||
content: never;
|
||||
};
|
||||
/** @description Validation Error */
|
||||
422: {
|
||||
content: {
|
||||
@ -7056,7 +7167,9 @@ export type operations = {
|
||||
};
|
||||
};
|
||||
/** @description Image not found */
|
||||
404: never;
|
||||
404: {
|
||||
content: never;
|
||||
};
|
||||
/** @description Validation Error */
|
||||
422: {
|
||||
content: {
|
||||
@ -7101,7 +7214,7 @@ export type operations = {
|
||||
/** @description The origin of images to list. */
|
||||
image_origin?: components["schemas"]["ResourceOrigin"];
|
||||
/** @description The categories of image to include. */
|
||||
categories?: (components["schemas"]["ImageCategory"])[];
|
||||
categories?: components["schemas"]["ImageCategory"][];
|
||||
/** @description Whether to list intermediate images. */
|
||||
is_intermediate?: boolean;
|
||||
/** @description The board id to filter by. Use 'none' to find images without a board. */
|
||||
@ -7212,7 +7325,7 @@ export type operations = {
|
||||
/** @description Successful Response */
|
||||
200: {
|
||||
content: {
|
||||
"application/json": components["schemas"]["OffsetPaginatedResults_BoardDTO_"] | (components["schemas"]["BoardDTO"])[];
|
||||
"application/json": components["schemas"]["OffsetPaginatedResults_BoardDTO_"] | components["schemas"]["BoardDTO"][];
|
||||
};
|
||||
};
|
||||
/** @description Validation Error */
|
||||
@ -7351,7 +7464,7 @@ export type operations = {
|
||||
/** @description Successful Response */
|
||||
200: {
|
||||
content: {
|
||||
"application/json": (string)[];
|
||||
"application/json": string[];
|
||||
};
|
||||
};
|
||||
/** @description Validation Error */
|
||||
|
Loading…
x
Reference in New Issue
Block a user