mirror of
https://github.com/1Panel-dev/MaxKB.git
synced 2025-12-26 01:33:05 +00:00
fix: Child application node, input parameters too long, error reported during Q&A (#2347)
This commit is contained in:
parent
f5155e7f7e
commit
bb557fd187
|
|
@ -174,7 +174,7 @@ class BaseApplicationNode(IApplicationNode):
|
|||
current_chat_id = string_to_uuid(chat_id + application_id)
|
||||
Chat.objects.get_or_create(id=current_chat_id, defaults={
|
||||
'application_id': application_id,
|
||||
'abstract': message
|
||||
'abstract': message[0:1024]
|
||||
})
|
||||
if app_document_list is None:
|
||||
app_document_list = []
|
||||
|
|
|
|||
Loading…
Reference in New Issue