Browse Source

Fix: infinite loading not work when message is too short (#5075)

KVOJJJin 10 months ago
parent
commit
5f104bab57
1 changed files with 1 additions and 1 deletions
  1. 1 1
      web/app/components/app/log/list.tsx

+ 1 - 1
web/app/components/app/log/list.tsx

@@ -185,7 +185,7 @@ function DetailPanel<T extends ChatConversationFullDetailResponse | CompletionCo
         return
       const params: ChatMessagesRequest = {
         conversation_id: detail.id,
-        limit: 4,
+        limit: 10,
       }
       if (items?.[0]?.id)
         params.first_id = items?.[0]?.id.replace('question-', '')