From 5c2276ef1eb74893a5483ff4f4602687557587e5 Mon Sep 17 00:00:00 2001 From: mike Date: Sun, 28 Dec 2025 00:21:02 +0100 Subject: [PATCH] chore: update 1 file(s) --- index.html | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/index.html b/index.html index bab1497..326bc41 100644 --- a/index.html +++ b/index.html @@ -961,6 +961,11 @@ async function handleNonStreamingResponse(userMessage) { userInput.focus() } } +function loadChatHistory() { + chatHistory.forEach(message => { + addMessage(message.role, message.content, message.markdown, message.messageId); + }); +} // Stop current stream function stopStream() { @@ -1042,8 +1047,3 @@ I now support **real-time streaming responses** and **dark, readable text format -function loadChatHistory() { - chatHistory.forEach(message => { - addMessage(message.role, message.content, message.markdown, message.messageId); - }); -}