Usage & Billing
Active Plan
Free
Current Usage
$0.00 / $0
API key
Start automating right away
Playground
Test your agent
Agent
Device
1# pip install smooth-py
2from smooth import SmoothClient
3
4smooth_client = SmoothClient(api_key="")
5task = smooth_client.run(
6    "Your task here..."
7)
8
9# Print the live view url
10print(f"Live URL: {task.live_url()}")
11
12# Get the result
13task_result = task.result()
14
15if task_result.status == "done":
16    print(f"Agent response: {task_result.output}")
17else:
18    print(f"There was an error: {task_result.error}")
Watch the agent in action
Created
Task ID
Status
Duration
Cost

Task details

The agent response will appear here.