create_draft_tweet
Generate a draft tweet for X/Twitter by providing the content, allowing users to prepare and review posts before publishing them.
Instructions
Create a draft tweet
Input Schema
Name | Required | Description | Default |
---|---|---|---|
content | Yes | The content of the tweet |
Input Schema (JSON Schema)
{
"properties": {
"content": {
"description": "The content of the tweet",
"type": "string"
}
},
"required": [
"content"
],
"type": "object"
}