This commit is contained in:
liuhaoran 2024-11-15 09:22:42 +08:00 committed by GitHub
commit 5cc6961e60
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -125,9 +125,7 @@ class AdvancedChatAppGenerator(MessageBasedAppGenerator):
app_config=app_config, app_config=app_config,
file_upload_config=file_extra_config, file_upload_config=file_extra_config,
conversation_id=conversation.id if conversation else None, conversation_id=conversation.id if conversation else None,
inputs=conversation.inputs inputs=inputs if conversation else self._prepare_user_inputs(user_inputs=inputs, app_config=app_config),
if conversation
else self._prepare_user_inputs(user_inputs=inputs, app_config=app_config),
query=query, query=query,
files=file_objs, files=file_objs,
parent_message_id=args.get("parent_message_id") if invoke_from != InvokeFrom.SERVICE_API else UUID_NIL, parent_message_id=args.get("parent_message_id") if invoke_from != InvokeFrom.SERVICE_API else UUID_NIL,