From 0a29e5f156433b0e453e3f7ab9d3e1e97ff93c6c Mon Sep 17 00:00:00 2001 From: SpudGunMan Date: Sun, 1 Sep 2024 11:16:01 -0700 Subject: [PATCH] Update mesh_bot.py --- mesh_bot.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mesh_bot.py b/mesh_bot.py index 5a879e8..bfbff8c 100755 --- a/mesh_bot.py +++ b/mesh_bot.py @@ -456,9 +456,9 @@ def onReceive(packet, interface): async def start_rx(): print (CustomFormatter.bold_white + f"\nMeshtastic Autoresponder Bot CTL+C to exit\n" + CustomFormatter.reset) if llm_enabled: - logger.debug(f"System: Ollama LLM Enabled, loading model please wait") + logger.debug(f"System: Ollama LLM Enabled, loading model {llmModel} please wait") llm_query(" ", myNodeNum1) - logger.debug(f"System: LLM model loaded") + logger.debug(f"System: LLM model {llmModel} loaded") # Start the receive subscriber using pubsub via meshtastic library pub.subscribe(onReceive, 'meshtastic.receive') pub.subscribe(onDisconnect, 'meshtastic.connection.lost')