Fix slow typing in chat input with long running sessions (#3722)

This commit is contained in:
Zane
2025-07-30 10:42:13 -07:00
committed by GitHub
parent f47836bbe8
commit be6c599063
5 changed files with 105 additions and 28 deletions
@@ -47,9 +47,9 @@ export default function ProgressiveMessageList({
appendMessage = () => {},
isUserMessage,
onScrollToBottom,
batchSize = 15, // Render 15 messages per batch (reduced for better UX)
batchDelay = 30, // 30ms delay between batches (faster)
showLoadingThreshold = 30, // Only show progressive loading for 30+ messages (lower threshold)
batchSize = 20,
batchDelay = 20,
showLoadingThreshold = 50,
renderMessage, // Custom render function
isStreamingMessage = false, // Whether messages are currently being streamed
}: ProgressiveMessageListProps) {