Skip to main content

Dendrite is a suite of tools that makes it easy to create web integrations for AI agents. With Dendrite your can: Authenticate on websites, Interact with elements, Extract structured data, Download and upload files, Fill out forms

Project description

Website Documentation Discord

What is Dendrite?

Dendrite is a devtool that makes it easy for AI agents to:

  • 🔓 Authenticate on websites
  • 👆🏼 Interact with elements
  • 💿 Extract structured data
  • ↕️ Download/upload files
  • 🚫 Browse without getting blocked

A simple outlook integration

With Dendrite, it's easy to create web interaction tools for your agent.

from dendrite_sdk import Dendrite

def send_email():
    client = Dendrite(auth="outlook.live.com")

    # Navigate
    client.goto(
        "https://outlook.live.com/mail/0/",
        expected_page="An email inbox"
    )

    # Create new email and populate fields
    client.click("The new email button")
    client.fill_fields({
        "Recipient": to,
        "Subject": subject,
        "Message": message
    })

    # Send email
    client.click("The send button")

To authenticate you'll need to use our Chrome Extension Dendrite Vault, you can download it here. Read more about authentication in our docs.

Quickstart

pip install dendrite-sdk && dendrite install

Simple navigation and interaction

Initialize the Dendrite client and start doing web interactions without boilerplate.

Get your API key here

from dendrite_sdk import Dendrite

client = Dendrite(dendrite_api_key="sk...")

client.goto("https://google.com")
client.fill("Search field", "Hello world")
client.press("Enter")

In the example above, we simply go to Google, populate the search field with "Hello world" and simulate a keypress on Enter. It's a simple example that starts to explore the endless possibilities with Dendrite. Now you can create tools for your agents that have access to the full web without depending on APIs.

More powerful examples

Now, let's have some fun. Earlier we showed you a simple send_email example. And sending emails is cool, but if that's all our agent can do it kind of sucks. So let's create two cooler examples.

Download Bank Transactions

First up, a tool that allows our AI agent to download our bank's monthly transactions so that they can be analyzed and compiled into a report that can be sent to stakeholders with send_email.

from dendrite_sdk import Dendrite

def get_transactions() -> str:
    client = Dendrite(auth="mercury.com")

    # Navigate and wait for loading
    client.goto(
      "https://app.mercury.com/transactions",
      expected_page="Dashboard with transactions"
    )
    client.wait_for("The transactions to finish loading")

    # Modify filters
    client.click("The 'add filter' button")
    client.click("The 'show transactions for' dropdown")
    client.click("The 'this month' option")

    # Download file
    client.click("The 'export filtered' button")
    transactions = client.get_download()

    # Save file locally
    path = "files/transactions.xlsx"
    transactions.save_as(path)

    return path

def analyze_transactions(path: str):
    ...

Extract Google Analytics

Finally, it would be cool if we could add the amount of monthly visitors from Google Analytics to our report. We can do that by using the extract function:

def get_visitor_count() -> int:
    client = Dendrite(auth="analytics.google.com")

    client.goto(
      "https://analytics.google.com/analytics/web",
      expected_page="Google Analytics dashboard"
    )

    # The Dendrite extract agent will create a web script that is cached
    # and reused. It will self-heal when the website updates
    visitor_count = client.extract("The amount of visitors this month", int)
    return visitor_count

Documentation

Read the full docs here

Find more advanced examples in our docs.

Remote Browsers

When you want to scale up your AI agents, we support using browsers hosted by Browserbase. This way you can run many agents in parallel without having to worry about the infrastructure.

To start using Browserbase just swap out the Dendrite class with DendriteRemoteBrowser and add your Browserbase API key and project id, either in the code or in a .env file like this:

# ... previous keys
BROWSERBASE_API_KEY=
BROWSERBASE_PROJECT_ID=
# from dendrite_sdk import Dendrite
from dendrite_sdk import DendriteRemoteBrowser

...

# client = Dendrite(...)
client = DendriteRemoteBrowser(
    # Use interchangeably with the Dendrite class
    browserbase_api_key="...", # or specify the browsebase keys in the .env file
    browserbase_project_id="..."
)

...

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

dendrite_sdk-0.2.1.tar.gz (66.2 kB view details)

Uploaded Source

Built Distribution

dendrite_sdk-0.2.1-py3-none-any.whl (111.3 kB view details)

Uploaded Python 3

File details

Details for the file dendrite_sdk-0.2.1.tar.gz.

File metadata

  • Download URL: dendrite_sdk-0.2.1.tar.gz
  • Upload date:
  • Size: 66.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.1 CPython/3.12.6

File hashes

Hashes for dendrite_sdk-0.2.1.tar.gz
Algorithm Hash digest
SHA256 70ffaeb665a6412ac4f85a795c57c9da5ec2037917ba7c2373d4bcea9c1ebcdb
MD5 32b4ddaa7dddae831c9261f74f4a45c3
BLAKE2b-256 2e24de8a717d860cbcad077bc40a12609776da4154ef81d8b91fe73a1a21b04e

See more details on using hashes here.

File details

Details for the file dendrite_sdk-0.2.1-py3-none-any.whl.

File metadata

  • Download URL: dendrite_sdk-0.2.1-py3-none-any.whl
  • Upload date:
  • Size: 111.3 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.1 CPython/3.12.6

File hashes

Hashes for dendrite_sdk-0.2.1-py3-none-any.whl
Algorithm Hash digest
SHA256 d1390c6ef6facebffd9f3bf80cb2f5c253c648fb039103eee7cf89fd3d82df2a
MD5 432ff896564869c0653065ce97478340
BLAKE2b-256 f10d51a30edb2da3b2e47ba160ae34bca81ca88ecac69c8dc2ef5382cfd07b87

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page