Change default Ollama model to qwen3.5:2b

This commit is contained in:
Z User 2026-03-24 06:24:12 +00:00
parent a2febd7dd9
commit 4cce5d0995

View File

@ -20,7 +20,7 @@ class Settings(BaseSettings):
# Ollama
ollama_host: str = Field(default="http://127.0.0.1:11434", description="Ollama server URL")
ollama_model: str = Field(default="qwen2.5:2b", description="Default Ollama model for orchestration")
ollama_model: str = Field(default="qwen3.5:2b", description="Default Ollama model for orchestration")
embedding_model: str = Field(default="qwen3-embedding:4b", description="Embedding model for RAG")
# Admin