from notte_sdk import NotteClient
notte = NotteClient()
with notte.Session() as session:
agent = notte.Agent(session=session)
_ = agent.start(
task="find a cute dog on google images"
)
# stops without waiting for the agent to finish
_ = agent.stop(){
"agent_id": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"session_id": "<string>",
"status": "active",
"task": "<string>",
"closed_at": "2023-11-07T05:31:56Z",
"saved": false,
"url": "<string>",
"success": true,
"answer": "<string>",
"steps": [
{}
]
}from notte_sdk import NotteClient
notte = NotteClient()
with notte.Session() as session:
agent = notte.Agent(session=session)
_ = agent.start(
task="find a cute dog on google images"
)
# stops without waiting for the agent to finish
_ = agent.stop(){
"agent_id": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"session_id": "<string>",
"status": "active",
"task": "<string>",
"closed_at": "2023-11-07T05:31:56Z",
"saved": false,
"url": "<string>",
"success": true,
"answer": "<string>",
"steps": [
{}
]
}Documentation Index
Fetch the complete documentation index at: https://notte-experiment-visibility-md-links.mintlify.app/llms.txt
Use this file to discover all available pages before exploring further.
The access token received from the authorization server in the OAuth 2.0 flow.
1Successful Response
The ID of the agent
The creation time of the agent
The ID of the session
The status of the agent (active or closed)
active, closed The task that the agent is currently running
The closing time of the agent
Whether the agent is saved as a workflow
The URL that the agent started on
Whether the agent task was successful. None if the agent is still running
The answer to the agent task. None if the agent is still running
The steps that the agent has currently taken
Was this page helpful?