Execute autonomous agents powered by LLMs that can navigate websites, perform complex workflows, and complete tasks through natural language instructions.
The following snippet shows how to manage your agents using the Notte Python SDK.
Copy
Ask AI
from notte_sdk import NotteClientnotte = NotteClient()with notte.Session() as session: agent = notte.Agent(session=session, max_steps=10) response = agent.run(task="Find the best italian restaurant in SF and book a table for 2 at 7pm today") print(f"Agent terminated with status: {response.success} and answer: {response.answer}")