enhance_text
Enhances story page text to meet a specified expansion target by applying advanced techniques. Input text and target percentage for optimized content growth.
Instructions
Enhances a story page using all techniques to meet expansion target
Input Schema
Name | Required | Description | Default |
---|---|---|---|
expansionTarget | No | Target expansion percentage (default: 200) | |
text | Yes | The story page text to enhance |
Input Schema (JSON Schema)
{
"properties": {
"expansionTarget": {
"description": "Target expansion percentage (default: 200)",
"maximum": 500,
"minimum": 100,
"type": "number"
},
"text": {
"description": "The story page text to enhance",
"type": "string"
}
},
"required": [
"text"
],
"type": "object"
}