From ef24881a52f2d79287990674db0037e04ca5c298 Mon Sep 17 00:00:00 2001 From: sm4640 Date: Fri, 19 Jun 2026 18:28:50 +0900 Subject: [PATCH] =?UTF-8?q?Fix:=20[4.0.1]=20Claude=20=EB=AA=A8=EB=8D=B8=20?= =?UTF-8?q?ID=20=EC=88=98=EC=A0=95=20=E2=80=94=20claude-sonnet-4-20250514?= =?UTF-8?q?=20=E2=86=92=20claude-sonnet-4-6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 존재하지 않는 모델 ID로 인해 404 not_found_error 발생. Anthropic 공식 alias인 claude-sonnet-4-6으로 교체. Co-Authored-By: Claude Opus 4.7 --- app/summarizer.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/summarizer.py b/app/summarizer.py index 49f6e7c..a9a7df1 100644 --- a/app/summarizer.py +++ b/app/summarizer.py @@ -42,7 +42,7 @@ SYSTEM_PROMPT = """너는 뉴스/경제 유튜브 영상을 시청하고 핵심 def summarize(transcript: str, title: str) -> dict: message = client.messages.create( - model="claude-sonnet-4-20250514", + model="claude-sonnet-4-6", max_tokens=2048, system=SYSTEM_PROMPT, messages=[