Tweaking Ollama models for LibreChat.

This commit is contained in:
2025-03-04 14:02:13 -05:00
parent a9efea0149
commit e3c566ffc4
+14 -14
View File
@@ -6,21 +6,21 @@ endpoints:
baseURL: "http://ollama:11434/v1/chat/completions" baseURL: "http://ollama:11434/v1/chat/completions"
models: models:
default: [ default: [
"deepseek-r1", "deepseek-r1:1.5b",
"deepseek-coder-v2", "deepseek-coder-v2:16b",
"deepseek-v3", "deepseek-v3:671b",
"llama3.3", "llama3.3:70b",
"phi4", "phi4:14b",
"qwen2.5", "qwen2.5",
"llama2", "llama2:7b",
"mistral", "mistral:7b",
"codellama", "codellama:7b",
"tinyllama", "tinyllama:1.1b",
"starcoder2", "starcoder2:3b",
"dolphin-mixtral", "dolphin-mistral:7b",
"smollm2", "smollm2:1.7b",
"orca-mini", "orca-mini:3b",
"mistral-openorca" "mistral-openorca:7b"
] ]
# fetching list of models is supported but the `name` field must start # fetching list of models is supported but the `name` field must start
# with `ollama` (case-insensitive), as it does in this example. # with `ollama` (case-insensitive), as it does in this example.