From 64dede5c9acff7ee712243bfbbe6f895f70657f7 Mon Sep 17 00:00:00 2001 From: SpudGunMan Date: Wed, 9 Oct 2024 17:40:11 -0700 Subject: [PATCH] Update llm.py --- modules/llm.py | 1 - 1 file changed, 1 deletion(-) diff --git a/modules/llm.py b/modules/llm.py index fdfdf94..c33f9b2 100644 --- a/modules/llm.py +++ b/modules/llm.py @@ -119,7 +119,6 @@ def llm_query(input, nodeID=0, location_name=None): try: # Build the query from the template modelPrompt = meshBotAI.format(input=input, context='\n'.join(googleResults), location_name=location_name, llmModel=llmModel, history=history) - print(modelPrompt) result = ollamaClient.generate(model=llmModel, prompt=modelPrompt) result = result.get("response")