fix(llm): make sure the default option for ollama in settings matches what the client shows

This commit is contained in:
perf3ct 2025-05-29 20:47:25 +00:00
parent f6329aab73
commit 6169efe96b
No known key found for this signature in database
GPG Key ID: 569C4EEC436F5232

View File

@ -205,7 +205,7 @@ const defaultOptions: DefaultOption[] = [
{ name: "anthropicBaseUrl", value: "https://api.anthropic.com/v1", isSynced: true },
{ name: "ollamaEnabled", value: "false", isSynced: true },
{ name: "ollamaDefaultModel", value: "llama3", isSynced: true },
{ name: "ollamaBaseUrl", value: "", isSynced: true },
{ name: "ollamaBaseUrl", value: "http://localhost:11434", isSynced: true },
{ name: "ollamaEmbeddingModel", value: "nomic-embed-text", isSynced: true },
{ name: "embeddingAutoUpdateEnabled", value: "true", isSynced: true },