AI agent instructions
AI agent instructions
simple.py
Usage
See more information on the available operations:Run
Execute a task
Replay
Get the agent replay
Status
Query the agent status
Running with a session
Providing a session to your agent allows you to choose specific options, like changing your browser or using proxies.firefox.py
Providing credentials
Agents can be provided a vault with credentials in order to securely log in to websites without sharing your information to the LLM.agent_with_vault.py
Parameters
You can use the default parameters to create your session, or customize them:UnionType[RemoteSession, None]
default:"None"
The session to connect to. The session’s
open_viewer parameter controls whether to display a live viewer (browsers are always headless).UnionType[NotteVault, None]
default:"None"
A notte vault instance, if the agent requires authentication
UnionType[BaseNotifier, None]
default:"None"
A notifier (for example, email), which will get called upon task completion.
UnionType[NottePersona, None]
default:"None"
UnionType[str, None]
default:"None"
notte_core.common.config.LlmModel | str
The language model to use for agent reasoning.
bool
Whether to enable vision capabilities for the agent.
int
Maximum number of steps the agent can take.
str | None
Optional ID of the vault to use.
str | None
dict[str, typing.Any] | None
Config used for the notifier.

