add api for post browser-use tasks

This commit is contained in:
Кобылкевич Фёдор 2026-04-07 22:01:53 +03:00
parent 890d492de0
commit d277955a9a
11 changed files with 320 additions and 8 deletions

16
api/config.py Normal file
View file

@ -0,0 +1,16 @@
import os
from dataclasses import dataclass
@dataclass(frozen=True)
class Settings:
app_host: str = os.getenv("BROWSER_API_HOST", "0.0.0.0")
app_port: int = os.getenv("BROWSER_API_PORT", "8080")
browser_rpc_url: str = os.getenv("BROWSER_USE_RPC_URL", "http://browser:8787/run")
browser_rpc_timeout: float = float(os.getenv("BROWSER_USE_RPC_TIMEOUT", "900"))
max_concurrency = int(os.getenv("BROWSER_API_MAX_CONCURRENCY", "2"))
settings = Settings()