Files
browser-use/browser_use/skill_cli/commands/__init__.py
ShawnPana 0dc2fc5a6f remove run command and agent infrastructure from CLI
The `run` command pulled in heavy SDK dependencies (openai, anthropic,
google), had a bug (await on sync get_llm), and is superseded by
`browser-use cloud` for agent execution. CLI is now purely a browser
automation interface.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-03-12 11:44:13 -07:00

16 lines
197 B
Python

"""Command handlers for browser-use CLI."""
from browser_use.skill_cli.commands import (
browser,
doctor,
python_exec,
setup,
)
__all__ = [
'browser',
'doctor',
'python_exec',
'setup',
]