writing_assistant
Enhance draft content for specific platforms by optimizing readability, tone, and structure tailored to the target audience, improving engagement and clarity.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
draft | Yes | 用户提供的草稿内容 | |
platform | Yes | 目标平台(如公众号、小红书、推特等) |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"draft": {
"description": "用户提供的草稿内容",
"type": "string"
},
"platform": {
"description": "目标平台(如公众号、小红书、推特等)",
"type": "string"
}
},
"required": [
"draft",
"platform"
],
"type": "object"
}