From b4ead8735da6b6a6d15e9e0ec5370c298af9d339 Mon Sep 17 00:00:00 2001 From: Jason Cox Date: Sat, 20 Jul 2024 15:37:25 -0700 Subject: [PATCH] Fix issue with chatbot popup corruption --- RELEASE.md | 4 ++++ chatbot/server.py | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/RELEASE.md b/RELEASE.md index d1f04b5..a1726dd 100644 --- a/RELEASE.md +++ b/RELEASE.md @@ -1,5 +1,9 @@ # Releases +## 0.14.10 - Fix Popup + +* Chatbot: Fix issue where DOM was being corrupted by popup. New logic creates separate div for conversation debug. + ## 0.14.9 - Conversation Thread * Chatbot: Add `Debug Session` link to footer to display conversation thread. diff --git a/chatbot/server.py b/chatbot/server.py index 49f571f..ef20574 100644 --- a/chatbot/server.py +++ b/chatbot/server.py @@ -81,7 +81,7 @@ import aiohttp # TinyLLM Version -VERSION = "v0.14.9" +VERSION = "v0.14.10" # Set up logging logging.basicConfig(level=logging.INFO,