diff --git a/smartassist/config/smartassist.yaml b/smartassist/config/smartassist.yaml new file mode 100644 index 0000000..94e5481 --- /dev/null +++ b/smartassist/config/smartassist.yaml @@ -0,0 +1,23 @@ +# Frontend Configuration +frontend: + url: "http://localhost:8000" + +# Backend Configuration +backend: + url: "http://localhost:5005" + +# 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 + +# Additional Configuration Options (Optional) +logging: + level: DEBUG # Set log level (DEBUG, INFO, WARNING, ERROR, CRITICAL) + +# Cache Settings (Optional) +cache: + enabled: true + timeout: 60 # Seconds +