Skip to content

Commit bb557fd

Browse files
authored
fix: Child application node, input parameters too long, error reported during Q&A (#2347)
1 parent f5155e7 commit bb557fd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

apps/application/flow/step_node/application_node/impl/base_application_node.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -174,7 +174,7 @@ def execute(self, application_id, message, chat_id, chat_record_id, stream, re_c
174174
current_chat_id = string_to_uuid(chat_id + application_id)
175175
Chat.objects.get_or_create(id=current_chat_id, defaults={
176176
'application_id': application_id,
177-
'abstract': message
177+
'abstract': message[0:1024]
178178
})
179179
if app_document_list is None:
180180
app_document_list = []

0 commit comments

Comments
 (0)