From fd31d583af44ca6ec734ad81552aa0c5d1fdc7f4 Mon Sep 17 00:00:00 2001 From: Joakim Persson Date: Thu, 18 Jul 2024 17:11:57 +0200 Subject: [PATCH] =?UTF-8?q?Lagt=20till=20n=C3=A5gra=20modellnamn=20samt=20?= =?UTF-8?q?api-endpoint?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- smartassist/config/smartassist.yaml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/smartassist/config/smartassist.yaml b/smartassist/config/smartassist.yaml index 94e5481..a2f0f92 100644 --- a/smartassist/config/smartassist.yaml +++ b/smartassist/config/smartassist.yaml @@ -5,14 +5,17 @@ frontend: # Backend Configuration backend: url: "http://localhost:5005" + api: "/api/chat" # Ollama Server Configuration ollama: url: "http://localhost:11434" api_key: "${OLLAMA_API_KEY}" # Refer to environment variable - model: "ollama/Llama-2-7b" # Select a model supported by the Ollama server + model: "phi3:mini" # Select a model supported by the Ollama server + # model: "llama3:70b" # Select a model supported by the Ollama server + # model: "llama3:latest" # Select a model supported by the Ollama server -# Additional Configuration Options (Optional) +# Additional Configuration Options (Optional – ignored for now) logging: level: DEBUG # Set log level (DEBUG, INFO, WARNING, ERROR, CRITICAL)