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
client = NotteClient(api_key="sk-...")
with client.Session(proxies=True) as session:
agent = client.Agent(
session=session,
max_steps=10,
)
response = agent.run(
task="Find the latest job openings on notte.cc"
)
print(response.answer)