Anchor Browser
Anchor is the platform for AI Agentic browser automation, which solves the challenge of automating workflows for web applications that lack APIs or have limited API coverage. It simplifies the creation, deployment, and management of browser-based automations, transforming complex web interactions into simple API endpoints.
langchain-anchorbrowser
provides 3 main tools:
AnchorContentTool
- For web content extractions in Markdown or HTML format.AnchorScreenshotTool
- For web page screenshots.AnchorWebTaskTools
- To perform web tasks.
Quickstart
Installation
Install the package:
pip install langchain-anchorbrowser
Usage
Import and utilize your intended tool. The full list of Anchor Browser available tools see Tool Features table in Anchor Browser tool page
from langchain_anchorbrowser import AnchorContentTool
# Get Markdown Content for https://www.anchorbrowser.io
AnchorContentTool().invoke(
{"url": "https://www.anchorbrowser.io", "format": "markdown"}
)