mirror of
https://github.com/invoke-ai/InvokeAI
synced 2024-08-30 20:32:17 +00:00
feat: make primitive node titles consistent
This commit is contained in:
parent
611e241ca7
commit
43b30355e4
@ -48,7 +48,7 @@ class BooleanCollectionOutput(BaseInvocationOutput):
|
||||
)
|
||||
|
||||
|
||||
@title("Boolean")
|
||||
@title("Boolean Primitive")
|
||||
@tags("primitives", "boolean")
|
||||
class BooleanInvocation(BaseInvocation):
|
||||
"""A boolean primitive value"""
|
||||
@ -62,7 +62,7 @@ class BooleanInvocation(BaseInvocation):
|
||||
return BooleanOutput(a=self.a)
|
||||
|
||||
|
||||
@title("Boolean Collection")
|
||||
@title("Boolean Primitive Collection")
|
||||
@tags("primitives", "boolean", "collection")
|
||||
class BooleanCollectionInvocation(BaseInvocation):
|
||||
"""A collection of boolean primitive values"""
|
||||
@ -101,7 +101,7 @@ class IntegerCollectionOutput(BaseInvocationOutput):
|
||||
)
|
||||
|
||||
|
||||
@title("Integer")
|
||||
@title("Integer Primitive")
|
||||
@tags("primitives", "integer")
|
||||
class IntegerInvocation(BaseInvocation):
|
||||
"""An integer primitive value"""
|
||||
@ -115,7 +115,7 @@ class IntegerInvocation(BaseInvocation):
|
||||
return IntegerOutput(a=self.a)
|
||||
|
||||
|
||||
@title("Integer Collection")
|
||||
@title("Integer Primitive Collection")
|
||||
@tags("primitives", "integer", "collection")
|
||||
class IntegerCollectionInvocation(BaseInvocation):
|
||||
"""A collection of integer primitive values"""
|
||||
@ -154,7 +154,7 @@ class FloatCollectionOutput(BaseInvocationOutput):
|
||||
)
|
||||
|
||||
|
||||
@title("Float")
|
||||
@title("Float Primitive")
|
||||
@tags("primitives", "float")
|
||||
class FloatInvocation(BaseInvocation):
|
||||
"""A float primitive value"""
|
||||
@ -168,7 +168,7 @@ class FloatInvocation(BaseInvocation):
|
||||
return FloatOutput(a=self.param)
|
||||
|
||||
|
||||
@title("Float Collection")
|
||||
@title("Float Primitive Collection")
|
||||
@tags("primitives", "float", "collection")
|
||||
class FloatCollectionInvocation(BaseInvocation):
|
||||
"""A collection of float primitive values"""
|
||||
@ -207,7 +207,7 @@ class StringCollectionOutput(BaseInvocationOutput):
|
||||
)
|
||||
|
||||
|
||||
@title("String")
|
||||
@title("String Primitive")
|
||||
@tags("primitives", "string")
|
||||
class StringInvocation(BaseInvocation):
|
||||
"""A string primitive value"""
|
||||
@ -221,7 +221,7 @@ class StringInvocation(BaseInvocation):
|
||||
return StringOutput(text=self.text)
|
||||
|
||||
|
||||
@title("String Collection")
|
||||
@title("String Primitive Collection")
|
||||
@tags("primitives", "string", "collection")
|
||||
class StringCollectionInvocation(BaseInvocation):
|
||||
"""A collection of string primitive values"""
|
||||
@ -289,7 +289,7 @@ class ImageInvocation(BaseInvocation):
|
||||
)
|
||||
|
||||
|
||||
@title("Image Collection")
|
||||
@title("Image Primitive Collection")
|
||||
@tags("primitives", "image", "collection")
|
||||
class ImageCollectionInvocation(BaseInvocation):
|
||||
"""A collection of image primitive values"""
|
||||
@ -357,7 +357,7 @@ class LatentsInvocation(BaseInvocation):
|
||||
return build_latents_output(self.latents.latents_name, latents)
|
||||
|
||||
|
||||
@title("Latents Collection")
|
||||
@title("Latents Primitive Collection")
|
||||
@tags("primitives", "latents", "collection")
|
||||
class LatentsCollectionInvocation(BaseInvocation):
|
||||
"""A collection of latents tensor primitive values"""
|
||||
@ -475,7 +475,7 @@ class ConditioningInvocation(BaseInvocation):
|
||||
return ConditioningOutput(conditioning=self.conditioning)
|
||||
|
||||
|
||||
@title("Conditioning Collection")
|
||||
@title("Conditioning Primitive Collection")
|
||||
@tags("primitives", "conditioning", "collection")
|
||||
class ConditioningCollectionInvocation(BaseInvocation):
|
||||
"""A collection of conditioning tensor primitive values"""
|
||||
|
@ -573,7 +573,7 @@ export type components = {
|
||||
file: Blob;
|
||||
};
|
||||
/**
|
||||
* Boolean Collection
|
||||
* Boolean Primitive Collection
|
||||
* @description A collection of boolean primitive values
|
||||
*/
|
||||
BooleanCollectionInvocation: {
|
||||
@ -619,7 +619,7 @@ export type components = {
|
||||
collection?: (boolean)[];
|
||||
};
|
||||
/**
|
||||
* Boolean
|
||||
* Boolean Primitive
|
||||
* @description A boolean primitive value
|
||||
*/
|
||||
BooleanInvocation: {
|
||||
@ -1002,7 +1002,7 @@ export type components = {
|
||||
clip?: components["schemas"]["ClipField"];
|
||||
};
|
||||
/**
|
||||
* Conditioning Collection
|
||||
* Conditioning Primitive Collection
|
||||
* @description A collection of conditioning tensor primitive values
|
||||
*/
|
||||
ConditioningCollectionInvocation: {
|
||||
@ -1770,7 +1770,7 @@ export type components = {
|
||||
field: string;
|
||||
};
|
||||
/**
|
||||
* Float Collection
|
||||
* Float Primitive Collection
|
||||
* @description A collection of float primitive values
|
||||
*/
|
||||
FloatCollectionInvocation: {
|
||||
@ -1816,7 +1816,7 @@ export type components = {
|
||||
collection?: (number)[];
|
||||
};
|
||||
/**
|
||||
* Float
|
||||
* Float Primitive
|
||||
* @description A float primitive value
|
||||
*/
|
||||
FloatInvocation: {
|
||||
@ -2161,7 +2161,7 @@ export type components = {
|
||||
channel?: "A" | "R" | "G" | "B";
|
||||
};
|
||||
/**
|
||||
* Image Collection
|
||||
* Image Primitive Collection
|
||||
* @description A collection of image primitive values
|
||||
*/
|
||||
ImageCollectionInvocation: {
|
||||
@ -3113,7 +3113,7 @@ export type components = {
|
||||
seed?: number;
|
||||
};
|
||||
/**
|
||||
* Integer Collection
|
||||
* Integer Primitive Collection
|
||||
* @description A collection of integer primitive values
|
||||
*/
|
||||
IntegerCollectionInvocation: {
|
||||
@ -3159,7 +3159,7 @@ export type components = {
|
||||
collection?: (number)[];
|
||||
};
|
||||
/**
|
||||
* Integer
|
||||
* Integer Primitive
|
||||
* @description An integer primitive value
|
||||
*/
|
||||
IntegerInvocation: {
|
||||
@ -3256,7 +3256,7 @@ export type components = {
|
||||
item?: unknown;
|
||||
};
|
||||
/**
|
||||
* Latents Collection
|
||||
* Latents Primitive Collection
|
||||
* @description A collection of latents tensor primitive values
|
||||
*/
|
||||
LatentsCollectionInvocation: {
|
||||
@ -5786,7 +5786,7 @@ export type components = {
|
||||
show_easing_plot?: boolean;
|
||||
};
|
||||
/**
|
||||
* String Collection
|
||||
* String Primitive Collection
|
||||
* @description A collection of string primitive values
|
||||
*/
|
||||
StringCollectionInvocation: {
|
||||
@ -5832,7 +5832,7 @@ export type components = {
|
||||
collection?: (string)[];
|
||||
};
|
||||
/**
|
||||
* String
|
||||
* String Primitive
|
||||
* @description A string primitive value
|
||||
*/
|
||||
StringInvocation: {
|
||||
@ -6193,24 +6193,6 @@ export type components = {
|
||||
ui_hidden: boolean;
|
||||
ui_type?: components["schemas"]["UIType"];
|
||||
};
|
||||
/**
|
||||
* StableDiffusion2ModelFormat
|
||||
* @description An enumeration.
|
||||
* @enum {string}
|
||||
*/
|
||||
StableDiffusion2ModelFormat: "checkpoint" | "diffusers";
|
||||
/**
|
||||
* ControlNetModelFormat
|
||||
* @description An enumeration.
|
||||
* @enum {string}
|
||||
*/
|
||||
ControlNetModelFormat: "checkpoint" | "diffusers";
|
||||
/**
|
||||
* StableDiffusionXLModelFormat
|
||||
* @description An enumeration.
|
||||
* @enum {string}
|
||||
*/
|
||||
StableDiffusionXLModelFormat: "checkpoint" | "diffusers";
|
||||
/**
|
||||
* StableDiffusionOnnxModelFormat
|
||||
* @description An enumeration.
|
||||
@ -6223,6 +6205,24 @@ export type components = {
|
||||
* @enum {string}
|
||||
*/
|
||||
StableDiffusion1ModelFormat: "checkpoint" | "diffusers";
|
||||
/**
|
||||
* ControlNetModelFormat
|
||||
* @description An enumeration.
|
||||
* @enum {string}
|
||||
*/
|
||||
ControlNetModelFormat: "checkpoint" | "diffusers";
|
||||
/**
|
||||
* StableDiffusion2ModelFormat
|
||||
* @description An enumeration.
|
||||
* @enum {string}
|
||||
*/
|
||||
StableDiffusion2ModelFormat: "checkpoint" | "diffusers";
|
||||
/**
|
||||
* StableDiffusionXLModelFormat
|
||||
* @description An enumeration.
|
||||
* @enum {string}
|
||||
*/
|
||||
StableDiffusionXLModelFormat: "checkpoint" | "diffusers";
|
||||
};
|
||||
responses: never;
|
||||
parameters: never;
|
||||
|
Loading…
Reference in New Issue
Block a user