Notte Agent Builder

Generate code to run web agents with the Notte API

Notte Agent Builder

Generate code to run web agents with the Notte API
main.py
from notte_sdk import NotteClient

notte = NotteClient(api_key="sk-...")

response = notte.agents.run(
    task="Find the latest job openings on notte.cc"
)
print(response.answer)
API Docs