Run
Invoke your deployed workflow — HTTP, SDK, schedule, or Studio.
This is stage 3 of 5 of the AGNT5 loop. Once your workflow is deployed, trigger it from wherever the work originates.
From Studio — pick the workflow, enter input, click Run. Same UX as agnt5 dev, against the managed environment.
From the CLI:
agnt5 run digest --input '{"limit": 5}'From your app — Python SDK:
from agnt5 import Client
client = Client(gateway_url="https://api.agnt5.com", api_key="agnt5_sk_...")
result = client.run("digest", {"limit": 5})Over HTTP:
curl -X POST https://api.agnt5.com/v1/workflows/digest/run \
-H "Authorization: Bearer agnt5_sk_..." \
-H "Content-Type: application/json" \
-d '{"limit": 5}'Each invocation gets its own trace in Studio — head to Observe next.