BrowserUse_and_ComputerUse_.../api/clients/browser_rpc_contracts.py
2026-04-07 22:49:06 +03:00

8 lines
190 B
Python

from typing import Any, Protocol
class BrowserRpcError(RuntimeError): ...
class BrowserRpcRunner(Protocol):
async def run(self, task: str, timeout_sec: float) -> dict[str, Any]: ...