From 0fd3862c56d89a5a4f67b0d640a45f645520c07b Mon Sep 17 00:00:00 2001 From: KYUNGMO TAK Date: Sun, 19 Jul 2026 23:26:25 +0900 Subject: [PATCH] Changed llm model --- backend/.env | 2 +- backend/config.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/backend/.env b/backend/.env index ddfe533..285bb08 100644 --- a/backend/.env +++ b/backend/.env @@ -4,7 +4,7 @@ CORS_ORIGINS=https://ms.takits.me,http://localhost:4888,http://localhost:5173 # Local LLM (Ollama on Mac). LLM_BASE_URL=https://mac-ollama.takits.me -LLM_MODEL=gemma4:31b-mlx +LLM_MODEL=qwen3:30b-a3b-instruct-2507-q4_K_M LLM_TIMEOUT_SECONDS=300 LLM_MAX_MAILS=80 LLM_BODY_CHARS=3000 diff --git a/backend/config.py b/backend/config.py index 28b2cf9..b0d8400 100644 --- a/backend/config.py +++ b/backend/config.py @@ -27,7 +27,7 @@ _cors = os.getenv("CORS_ORIGINS", "http://localhost:5173,http://localhost:4888") CORS_ORIGINS = [origin.strip() for origin in _cors.split(",") if origin.strip()] LLM_BASE_URL = os.getenv("LLM_BASE_URL", "http://host.docker.internal:11434").rstrip("/") -LLM_MODEL = os.getenv("LLM_MODEL", "gemma4:31b-mlx").strip() +LLM_MODEL = os.getenv("LLM_MODEL", "qwen3:30b-a3b-instruct-2507-q4_K_M").strip() LLM_TIMEOUT_SECONDS = float(os.getenv("LLM_TIMEOUT_SECONDS", "300")) LLM_MAX_MAILS = int(os.getenv("LLM_MAX_MAILS", "80")) LLM_BODY_CHARS = int(os.getenv("LLM_BODY_CHARS", "3000")) -- 2.52.0