이거 하다가 내 돈이 없어진다

This commit is contained in:
imnyang 2025-05-20 23:33:17 +09:00
commit 96837ed01d
6 changed files with 101 additions and 40 deletions

View file

@ -2,8 +2,11 @@ from browser_use.browser.context import BrowserContextConfig
from pathlib import Path
import os
def browser_config_kwargs(lang: str = "en_US") -> dict:
browser_config_kwargs = {
from typing import Any
def browser_config_kwargs(lang: str = "en_US") -> dict[str, Any]:
browser_config_kwargs: dict[str, Any] = {
"keep_alive": True,
"browser_type": "chromium",
"headless": False,
"disable_security": True,