slides_generate
Create presentation slides from text input using selected themes. Generates downloadable slides with job tracking for completion status.
Instructions
Generate slides with 2slides. Returns job info including jobId and downloadUrl when ready.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
responseLanguage | Yes | ||
themeId | Yes | ||
userInput | Yes |
Input Schema (JSON Schema)
{
"properties": {
"responseLanguage": {
"minLength": 1,
"type": "string"
},
"themeId": {
"minLength": 1,
"type": "string"
},
"userInput": {
"minLength": 1,
"type": "string"
}
},
"required": [
"themeId",
"userInput",
"responseLanguage"
],
"type": "object"
}