inputSchema
{
"type": "object",
"required": [
"topic",
"mode"
],
"properties": {
"mode": {
"enum": [
"native",
"llm",
"hybrid"
],
"type": "string"
},
"count": {
"type": "integer",
"maximum": 20,
"minimum": 1
},
"topic": {
"type": "string",
"description": "é’©åÂÂ主题"
},
"platform": {
"enum": [
"xiaohongshu",
"douyin",
"wechat",
"kuaishou",
"bilibili",
"shipinhao",
"toutiao",
"zhihu",
"tiktok",
"youtube",
"instagram",
"linkedin",
"twitter",
"reddit",
"facebook",
"generic"
],
"type": "string"
},
"hot_topics": {
"type": "array"
},
"formula_categories": {
"type": "array",
"items": {
"type": "string"
}
}
}
}
outputSchema
{
"type": "object",
"required": [
"hooks",
"meta"
],
"properties": {
"meta": {
"type": "object"
},
"hooks": {
"type": "array",
"items": {
"type": "object",
"properties": {
"text": {
"type": "string"
},
"origin": {
"type": "string"
},
"formula": {
"type": "string"
},
"psychology_trigger": {
"type": "string"
},
"engagement_prediction": {
"type": "string"
}
}
}
}
}
}