diff --git a/modules/llm.py b/modules/llm.py index 3a44767..653f0ce 100644 --- a/modules/llm.py +++ b/modules/llm.py @@ -102,7 +102,7 @@ def llm_query(input, nodeID=0, location_name=None): response = "" result = "" - location_name = location_name + f" at the current time of {datetime.now().strftime('%Y-%m-%d %H:%M:%S')}" + location_name += f" at the current time of {datetime.now().strftime('%Y-%m-%d %H:%M:%S')}" result = chain_prompt_model.invoke({"input": input, "llmModel": llmModel, "userID": nodeID, \ "history": llmChat_history, "context": googleResults, "location_name": location_name}) #logger.debug(f"System: LLM Response: " + result.strip().replace('\n', ' '))