simpletuner/webhook-check
Check the functionality of your trainer's webhooks before submitting a real job.
Public
0
runs
Run simpletuner/webhook-check with an API
Use one of our client libraries to get started quickly. Clicking on a library will take you to the Playground tab where you can tweak different inputs, see the results, and copy the corresponding code to use in your own project.
Input schema
The fields you can use to run this model with an API. If you don't give a value for a field its default value will be used.
| Field | Type | Default value | Description |
|---|---|---|---|
| webhook_url |
string
|
The webhook URL to test. Must be publicly accessible.
|
|
| timeout_seconds |
number
|
30
Min: 5 Max: 120 |
Timeout for the webhook request.
|
{
"type": "object",
"title": "Input",
"required": [
"webhook_url"
],
"properties": {
"webhook_url": {
"type": "string",
"title": "Webhook Url",
"x-order": 0,
"description": "The webhook URL to test. Must be publicly accessible."
},
"timeout_seconds": {
"type": "number",
"title": "Timeout Seconds",
"default": 30,
"maximum": 120,
"minimum": 5,
"x-order": 1,
"description": "Timeout for the webhook request."
}
}
}
Output schema
The shape of the response you’ll get when you run this model with an API.
Schema
{
"type": "object",
"title": "Output",
"additionalProperties": true
}