revert and disable auto-formatting of invocations

This commit is contained in:
Lincoln Stein
2023-03-03 14:59:17 -05:00
parent dd4a1c998b
commit 6477e31c1e
6 changed files with 25 additions and 50 deletions

View File

@ -7,7 +7,8 @@ from .baseinvocation import BaseInvocationOutput
class PromptOutput(BaseInvocationOutput):
"""Base class for invocations that output a prompt"""
#fmt: off
type: Literal["prompt"] = "prompt"
prompt: str = Field(default=None, description="The output prompt")
#fmt: on