Overview

Execute autonomous agents powered by LLMs that can navigate websites, perform complex workflows, and complete tasks through natural language instructions.

Agent Management

Python SDK

The following snippet shows how to manage your agents using the Notte Python SDK.

from notte_sdk import NotteClient

notte = NotteClient()
with notte.Session() as session:
    agent = notte.Agent(session=session)
    response = agent.run(task="Find the best italian restaurant in SF and book a table for 2 at 7pm today", max_steps=10)
    print(f"Agent terminated with status: {response.success} and answer: {response.answer}")

Key points

  • You can check active agents using notte.agents.list().

Overview

Execute autonomous agents powered by LLMs that can navigate websites, perform complex workflows, and complete tasks through natural language instructions.

Agent Management

Python SDK

The following snippet shows how to manage your agents using the Notte Python SDK.

from notte_sdk import NotteClient

notte = NotteClient()
with notte.Session() as session:
    agent = notte.Agent(session=session)
    response = agent.run(task="Find the best italian restaurant in SF and book a table for 2 at 7pm today", max_steps=10)
    print(f"Agent terminated with status: {response.success} and answer: {response.answer}")

Key points

  • You can check active agents using notte.agents.list().