AI Actions
AI Actions allow your agent to execute external HTTP endpoints as tools.
Configuration Fields
- Action name (tool identifier)
- Description (when the model should use it)
- JSON Schema (tool parameters)
- Endpoint URL
- Method (
GETorPOST) - Optional static headers
Example Schema
{
"type": "object",
"properties": {
"orderId": {
"type": "string",
"description": "Customer order ID"
}
},
"required": ["orderId"]
}Execution Behavior
At runtime, Dukon:
- Registers configured actions as model tools.
- Sends arguments from model tool calls to your endpoint.
- Returns JSON response payload to model context.
Safety Recommendations
- Scope endpoints to least privilege.
- Add server-side auth and request validation.
- Implement endpoint timeouts and idempotency.
- Monitor tool error rates and payload quality.
Last updated on