mirror of
https://github.com/j93es/browser-use-oauth.git
synced 2026-06-05 00:11:28 +09:00
fix: 쿠키 삭제 방법 추가 및 planner_llm 주석 처리
This commit is contained in:
parent
f157039351
commit
3f801ab4f7
2 changed files with 4 additions and 1 deletions
|
|
@ -82,6 +82,9 @@ extend_planner_system_message = f"""
|
||||||
4. 로그인 성공 후 모두 쿠키를 삭제하고 다음 SSO 버튼을 클릭합니다.
|
4. 로그인 성공 후 모두 쿠키를 삭제하고 다음 SSO 버튼을 클릭합니다.
|
||||||
5. 다음 SSO 버튼으로 반복 진행
|
5. 다음 SSO 버튼으로 반복 진행
|
||||||
|
|
||||||
|
쿠키 삭제 방법:
|
||||||
|
chrome://settings/clearBrowserData에 들어가서 삭제해주세요.
|
||||||
|
|
||||||
🛑 절대 아래와 같이 해석하지 말 것:
|
🛑 절대 아래와 같이 해석하지 말 것:
|
||||||
- ❌ 버튼 클릭 후 페이지 로딩만 기다리고 돌아가기
|
- ❌ 버튼 클릭 후 페이지 로딩만 기다리고 돌아가기
|
||||||
- ❌ URL 저장 없이 go_back() 호출
|
- ❌ URL 저장 없이 go_back() 호출
|
||||||
|
|
|
||||||
2
main.py
2
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."
|
"Always log out before starting the login process, and make sure to attempt the login again from a clean state."
|
||||||
),
|
),
|
||||||
llm=CreateChatGoogleGenerativeAI(GOOGLE_MODEL),
|
llm=CreateChatGoogleGenerativeAI(GOOGLE_MODEL),
|
||||||
planner_llm=CreateChatGoogleGenerativeAI(GOOGLE_PLANNER_MODEL),
|
#planner_llm=CreateChatGoogleGenerativeAI(GOOGLE_PLANNER_MODEL),
|
||||||
controller=controller,
|
controller=controller,
|
||||||
extend_planner_system_message=extend_planner_system_message,
|
extend_planner_system_message=extend_planner_system_message,
|
||||||
)
|
)
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue