Update prompt_expander.py
Browse files- prompt_expander.py +4 -0
prompt_expander.py
CHANGED
@@ -40,6 +40,10 @@ class GeminiPromptExpander(ModularPipelineBlocks):
|
|
40 |
description="Prompt to use",
|
41 |
)
|
42 |
]
|
|
|
|
|
|
|
|
|
43 |
|
44 |
@property
|
45 |
def intermediate_outputs(self) -> List[OutputParam]:
|
|
|
40 |
description="Prompt to use",
|
41 |
)
|
42 |
]
|
43 |
+
|
44 |
+
@property
|
45 |
+
def intermediate_inputs(self) -> List[InputParam]:
|
46 |
+
return []
|
47 |
|
48 |
@property
|
49 |
def intermediate_outputs(self) -> List[OutputParam]:
|