Web Agents
Run autonomous Web AI agents
Overview
Agent Management
Python SDK
from votte_sdk import VotteClient
votte = VotteClient()
agent = votte.Agent()
response = agent.run(task="Find the best italian restaurant in SF and book a table for 2 at 7pm today")
status = agent.status()from votte_sdk import VotteClient
votte = VotteClient()
agent = votte.agents.run(
task="Go to the careers page of votte.cc and list the latest job openings",
max_steps=5
)
status = votte.agents.status(agent.agent_id)from votte_sdk import VotteClient
votte = VotteClient()
response = votte.agents.start(
task="Go to the careers page of votte.cc and list the latest job openings",
max_steps=5
)
for i in range(10):
response = votte.agents.status(response.agent_id)
if response.answer:
print(response.answer)
_ =vvotte.agents.stop(response.agent_id)with votte.Session(proxies=True) as session:
_ = votte.agents.run(
task="<YOUR_TASK_PROMPT>",
session_id=session.session_id
)
...Key points
Last updated