ai-agent-browser 0.1.3__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- agent_browser/__init__.py +13 -0
- agent_browser/driver.py +849 -0
- agent_browser/interactive.py +229 -0
- agent_browser/main.py +191 -0
- agent_browser/utils.py +365 -0
- ai_agent_browser-0.1.3.dist-info/METADATA +389 -0
- ai_agent_browser-0.1.3.dist-info/RECORD +11 -0
- ai_agent_browser-0.1.3.dist-info/WHEEL +5 -0
- ai_agent_browser-0.1.3.dist-info/entry_points.txt +2 -0
- ai_agent_browser-0.1.3.dist-info/licenses/LICENSE +21 -0
- ai_agent_browser-0.1.3.dist-info/top_level.txt +1 -0
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
"""
|
|
2
|
+
agent-browser: A robust browser automation tool for AI agents.
|
|
3
|
+
|
|
4
|
+
Control browsers via CLI or IPC with support for screenshots, interactions,
|
|
5
|
+
assertions, and data extraction.
|
|
6
|
+
"""
|
|
7
|
+
|
|
8
|
+
from .driver import BrowserDriver
|
|
9
|
+
from .interactive import InteractiveRunner
|
|
10
|
+
from .utils import resize_screenshot_if_needed
|
|
11
|
+
|
|
12
|
+
__version__ = "0.1.0"
|
|
13
|
+
__all__ = ["BrowserDriver", "InteractiveRunner", "resize_screenshot_if_needed"]
|