Resumes a paused agent task.
Parameters
id: str
Returns
Resume task
import os
from tzafon import Lightcone
client = Lightcone(
api_key=os.environ.get("TZAFON_API_KEY"), # This is the default and can be omitted
)
response = client.agent.tasks.resume(
"id",
)
print(response.status){
"status": "status"
}Returns Examples
{
"status": "status"
}