Skip to content

Commit c819da8

Browse files
committed
Some cleanup of the tags and description of flux nodes
1 parent e19f079 commit c819da8

File tree

3 files changed

+7
-3
lines changed

3 files changed

+7
-3
lines changed

invokeai/app/invocations/flux_text_encoder.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,12 @@
1515
@invocation(
1616
"flux_text_encoder",
1717
title="FLUX Text Encoding",
18-
tags=["image"],
18+
tags=["image", "flux"],
1919
category="image",
2020
version="1.0.0",
2121
)
2222
class FluxTextEncoderInvocation(BaseInvocation):
23+
"""Encodes and preps a prompt for a flux image."""
2324
clip: CLIPField = InputField(
2425
title="CLIP",
2526
description=FieldDescriptions.clip,

invokeai/app/invocations/flux_text_to_image.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
@invocation(
2626
"flux_text_to_image",
2727
title="FLUX Text to Image",
28-
tags=["image"],
28+
tags=["image", "flux"],
2929
category="image",
3030
version="1.0.0",
3131
)

invokeai/frontend/web/src/services/api/schema.ts

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5798,7 +5798,10 @@ export type components = {
57985798
*/
57995799
type: "flux_model_loader_output";
58005800
};
5801-
/** FLUX Text Encoding */
5801+
/**
5802+
* FLUX Text Encoding
5803+
* @description Encodes and preps a prompt for a flux image.
5804+
*/
58025805
FluxTextEncoderInvocation: {
58035806
/**
58045807
* Id

0 commit comments

Comments
 (0)