feat(nodes.py): add optional memory field to MidJourneyPromptChainNode class constructor
This commit is contained in:
parent
1f4f734dc3
commit
2ffc8b266f
1 changed files with 7 additions and 0 deletions
|
|
@ -123,6 +123,13 @@ class MidJourneyPromptChainNode(FrontendNode):
|
|||
multiline=False,
|
||||
name="llm",
|
||||
),
|
||||
TemplateField(
|
||||
field_type="BaseChatMemory",
|
||||
required=False,
|
||||
show=True,
|
||||
name="memory",
|
||||
advanced=False,
|
||||
),
|
||||
],
|
||||
)
|
||||
description: str = "MidJourneyPromptChain is a chain you can use to generate new MidJourney prompts."
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue