Testar uttökad yaml-konfiguration

This commit is contained in:
Joakim Persson
2024-08-01 17:04:25 +02:00
parent 916b6f9e52
commit ab23585711
+6 -4
View File
@@ -13,22 +13,24 @@ models:
title: "Ollama" title: "Ollama"
url: "http://localhost:11434" url: "http://localhost:11434"
provider: "ollama" provider: "ollama"
# - model: "AUTODETECT"
- model: "AUTODETECT" - model: "AUTODETECT"
title: "Ollama-WARA" title: "Ollama-WARA"
url: "https://ollama-test.wara-ops.org" url: "https://ollama-test.wara-ops.org"
requestOptions: requestOptions:
headers: headers:
Authorization: "${OLLAMA_API_KEY}" # This should expand to something like "Basic XY...=" Authorization: "${OLLAMA_API_KEY}" # on MacOS: echo "Authorization: Basic $(echo -n 'user:password' | gbase64 -w 0)"
provider: "ollama" provider: "ollama"
# Ollama Server Configuration # Ollama Server Configuration
ollama: ollama:
title: "Ollama-local" title: "Ollama-local"
url: "http://localhost:11434" # url: "http://localhost:11434"
url: "https://ollama-test.wara-ops.org"
api_key: "${OLLAMA_API_KEY}" # Refer to environment variable api_key: "${OLLAMA_API_KEY}" # Refer to environment variable
model: "phi3:mini" # 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:70b" # Select a model supported by the Ollama server
# model: "llama3.1:70b" # Select a model supported by the Ollama server model: "llama3.1:70b" # Select a model supported by the Ollama server
# model: "llama3.1:8b" # Select a model supported by the Ollama server # model: "llama3.1:8b" # Select a model supported by the Ollama server
# model: "llama3:latest" # Select a model supported by the Ollama server # model: "llama3:latest" # Select a model supported by the Ollama server
# model: "mannix/llama3-8b-ablitered-v3:latest" # Select a model supported by the Ollama server # model: "mannix/llama3-8b-ablitered-v3:latest" # Select a model supported by the Ollama server