mirror of
https://github.com/run-llama/chat-ui.git
synced 2026-07-21 11:25:22 -04:00
Performance issue with long streams #32
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @wylswz on GitHub (Aug 16, 2025).
I was streaming llm output to UI token-by-token, and the webpage gets totally unresponsive after like 5000 words. However, when loading chat history using setMessages(), everything is ok.
Here is my code