We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6102c71 commit 4a8cf3aCopy full SHA for 4a8cf3a
apps/application/flow/i_step_node.py
@@ -32,7 +32,7 @@ def write_context(step_variable: Dict, global_variable: Dict, node, workflow):
32
if workflow.is_result(node, NodeResult(step_variable, global_variable)) and 'answer' in step_variable:
33
answer = step_variable['answer']
34
yield answer
35
- workflow.append_answer(answer)
+ node.answer_text = answer
36
if global_variable is not None:
37
for key in global_variable:
38
workflow.context[key] = global_variable[key]
0 commit comments