webhook event is a generic event which provisions a unique URL for your agent. You must add the webhook event to invoke your agent from the dashboard
Fields
string
The message to the agent.
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
webhook event is a generic event which provisions a unique URL for your agent. You must add the webhook event to invoke your agent from the dashboard
@on("webhook")
def agent(input):
pass
{
"text": "Hello world!"
}
def agent(input):
text = input.get("text")
