Create, manage, and execute automated web functions
Functions enable hybrid automation by combining the precision of scripting with the adaptability of AI agents. They allow you to script the predictable parts of your automation while leveraging agents only when needed, resulting in more reliable and cost-effective automations.
Copy
Ask AI
from notte_sdk import NotteClientclient = NotteClient()def run(url: str): with client.Session() as session: session.execute(type="goto", url=url) return session.scrape()