create_draft_thread
Create a draft tweet thread by providing an array of tweet contents for later review and publishing on X/Twitter.
Instructions
Create a draft tweet thread
Input Schema
Name | Required | Description | Default |
---|---|---|---|
contents | Yes | An array of tweet contents for the thread |
Input Schema (JSON Schema)
{
"properties": {
"contents": {
"description": "An array of tweet contents for the thread",
"items": {
"type": "string"
},
"type": "array"
}
},
"required": [
"contents"
],
"type": "object"
}