fix: Unable to retrieve session variables after form collection node (#3926)

This commit is contained in:
shaohuzhang1 2025-08-25 14:58:25 +08:00 committed by GitHub
parent 679453372e
commit 5dafe6f7fe
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -55,6 +55,7 @@ class BaseStartStepNode(IStarNode):
workflow_manage.context[key] = value
for item in details.get('global_fields', []):
workflow_manage.context[item.get('key')] = item.get('value')
self.workflow_manage.chat_context = self.workflow_manage.get_chat_info().get_chat_variable()
def get_node_params_serializer_class(self) -> Type[serializers.Serializer]:
pass