From ade94683ad719d84b4ff390b75919ee36be2f111 Mon Sep 17 00:00:00 2001 From: shum Date: Sat, 30 Aug 2025 04:54:46 +0000 Subject: [PATCH] apps/simplex-llm-bot: fix reset --- apps/simplex-llm-bot/bot.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/simplex-llm-bot/bot.py b/apps/simplex-llm-bot/bot.py index 0e2422c0d7..bf06d141a2 100644 --- a/apps/simplex-llm-bot/bot.py +++ b/apps/simplex-llm-bot/bot.py @@ -66,7 +66,7 @@ if __name__ == "__main__": else: return - chat_histories[chat_id] = [] # wipe the list + chat_histories[chat_id]["messages"] = [] # wipe the list await bot.send_message(chat_info, "Conversation history has been reset.") if aiclient is not None: