createTwitchPrediction
Enable Twitch streamers to create interactive predictions directly in chat by specifying a title, outcomes, and duration. Integrates with coding/chat assistants for streamlined engagement and management.
Instructions
Create a Twitch Prediction
Input Schema
Name | Required | Description | Default |
---|---|---|---|
duration | Yes | Duration in seconds | |
outcomes | Yes | Comma-separated outcomes | |
title | Yes | Prediction title |
Input Schema (JSON Schema)
{
"properties": {
"duration": {
"description": "Duration in seconds",
"type": "integer"
},
"outcomes": {
"description": "Comma-separated outcomes",
"type": "string"
},
"title": {
"description": "Prediction title",
"type": "string"
}
},
"required": [
"title",
"outcomes",
"duration"
],
"type": "object"
}