mirror of
https://github.com/invoke-ai/InvokeAI.git
synced 2026-04-23 03:00:31 -04:00
feat(ui): add dynamic prompts to t2i tab
- add param accordion for dynamic prompts - update graphs
This commit is contained in:
@@ -15,6 +15,7 @@ export const imagesApi = api.injectEndpoints({
|
||||
}
|
||||
return tags;
|
||||
},
|
||||
keepUnusedDataFor: 86400, // 24 hours
|
||||
}),
|
||||
}),
|
||||
});
|
||||
|
||||
@@ -47,6 +47,15 @@ export type InpaintInvocation = Invocation<'InpaintInvocation'>;
|
||||
export type ImageResizeInvocation = Invocation<'ImageResizeInvocation'>;
|
||||
export type RandomIntInvocation = Invocation<'RandomIntInvocation'>;
|
||||
export type CompelInvocation = Invocation<'CompelInvocation'>;
|
||||
export type DynamicPromptInvocation = Invocation<'DynamicPromptInvocation'>;
|
||||
export type NoiseInvocation = Invocation<'NoiseInvocation'>;
|
||||
export type TextToLatentsInvocation = Invocation<'TextToLatentsInvocation'>;
|
||||
export type LatentsToLatentsInvocation =
|
||||
Invocation<'LatentsToLatentsInvocation'>;
|
||||
export type ImageToLatentsInvocation = Invocation<'ImageToLatentsInvocation'>;
|
||||
export type LatentsToImageInvocation = Invocation<'LatentsToImageInvocation'>;
|
||||
export type PipelineModelLoaderInvocation =
|
||||
Invocation<'PipelineModelLoaderInvocation'>;
|
||||
|
||||
// ControlNet Nodes
|
||||
export type ControlNetInvocation = Invocation<'ControlNetInvocation'>;
|
||||
|
||||
Reference in New Issue
Block a user