From 3f801ab4f73df23296e252291fbc316ee6b9947b Mon Sep 17 00:00:00 2001 From: imnyang Date: Sat, 21 Jun 2025 15:57:22 +0900 Subject: [PATCH] =?UTF-8?q?fix:=20=EC=BF=A0=ED=82=A4=20=EC=82=AD=EC=A0=9C?= =?UTF-8?q?=20=EB=B0=A9=EB=B2=95=20=EC=B6=94=EA=B0=80=20=EB=B0=8F=20planne?= =?UTF-8?q?r=5Fllm=20=EC=A3=BC=EC=84=9D=20=EC=B2=98=EB=A6=AC?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- lib/llm/prompt/__init__.py | 3 +++ main.py | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/lib/llm/prompt/__init__.py b/lib/llm/prompt/__init__.py index d726f9a..5603cb7 100644 --- a/lib/llm/prompt/__init__.py +++ b/lib/llm/prompt/__init__.py @@ -82,6 +82,9 @@ extend_planner_system_message = f""" 4. 로그인 성공 후 모두 쿠키를 삭제하고 다음 SSO 버튼을 클릭합니다. 5. 다음 SSO 버튼으로 반복 진행 +쿠키 삭제 방법: +chrome://settings/clearBrowserData에 들어가서 삭제해주세요. + 🛑 절대 아래와 같이 해석하지 말 것: - ❌ 버튼 클릭 후 페이지 로딩만 기다리고 돌아가기 - ❌ URL 저장 없이 go_back() 호출 diff --git a/main.py b/main.py index 752095f..61a3f72 100644 --- a/main.py +++ b/main.py @@ -130,7 +130,7 @@ async def scan_one_url(url: str, skip_html_check: bool = False): "Always log out before starting the login process, and make sure to attempt the login again from a clean state." ), llm=CreateChatGoogleGenerativeAI(GOOGLE_MODEL), - planner_llm=CreateChatGoogleGenerativeAI(GOOGLE_PLANNER_MODEL), + #planner_llm=CreateChatGoogleGenerativeAI(GOOGLE_PLANNER_MODEL), controller=controller, extend_planner_system_message=extend_planner_system_message, )