mirror of
https://github.com/browser-use/browser-use
synced 2026-04-22 17:45:09 +02:00
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>
16 lines
197 B
Python
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',
|
|
]
|