Get a video recording of the agent run
enable_recording
recording_url()
from smooth import SmoothClient smooth_client = SmoothClient(api_key="cmzr-YOUR_API_KEY") task = smooth_client.run( task="<my-task>", enable_recording=True, ) print(f"Live URL: {task.live_url()}") print(f"Session recording URL: {task.recording_url()}") # Waits for task completion