From 7d99d8ec4a3abe0b160fa91fd0623bfec8844139 Mon Sep 17 00:00:00 2001 From: agentson Date: Mon, 23 Feb 2026 12:54:30 +0900 Subject: [PATCH] =?UTF-8?q?fix:=20GEMINI=5FMODEL=20=EA=B8=B0=EB=B3=B8?= =?UTF-8?q?=EA=B0=92=20'gemini-pro'=20=E2=86=92=20'gemini-2.0-flash'=20(is?= =?UTF-8?q?sue=20#217)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 'gemini-pro'는 deprecated 모델로 API 오류 발생 가능. .env.example은 이미 gemini-2.0-flash-exp로 설정되어 있음. Co-Authored-By: Claude Sonnet 4.6 --- src/config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/config.py b/src/config.py index 4aa3f8d..0a10619 100644 --- a/src/config.py +++ b/src/config.py @@ -17,7 +17,7 @@ class Settings(BaseSettings): # Google Gemini GEMINI_API_KEY: str - GEMINI_MODEL: str = "gemini-pro" + GEMINI_MODEL: str = "gemini-2.0-flash" # External Data APIs (optional — for data-driven decisions) NEWS_API_KEY: str | None = None