Lagt till logmeddelande

This commit is contained in:
Joakim Persson
2024-07-29 13:15:54 +02:00
parent ab94c06e75
commit d843a2b74c
+1
View File
@@ -72,6 +72,7 @@ def configure():
if isinstance(updated_config['ollama'].get('model'), str): # Look for 'model' key if isinstance(updated_config['ollama'].get('model'), str): # Look for 'model' key
model_to_use = updated_config['ollama'].get('model') model_to_use = updated_config['ollama'].get('model')
global_state.set_llm(model_to_use) global_state.set_llm(model_to_use)
logger.debug("configure(): LLM is set to: %s",global_state.get_llm())
return updated_config return updated_config