inputSchema
{
"type": "object",
"required": [
"topic"
],
"properties": {
"mode": {
"enum": [
"native",
"hybrid",
"llm"
],
"type": "string",
"default": "native"
},
"count": {
"type": "number",
"default": 5,
"maximum": 10,
"minimum": 1
},
"topic": {
"type": "string"
},
"locale": {
"enum": [
"zh-CN",
"en-US"
],
"type": "string",
"default": "zh-CN"
},
"platform": {
"enum": [
"xiaohongshu",
"douyin",
"wechat",
"kuaishou",
"bilibili",
"shipinhao",
"toutiao",
"zhihu",
"tiktok",
"youtube",
"instagram",
"linkedin",
"twitter"
],
"type": "string"
}
}
}
outputSchema
{
"type": "object",
"properties": {
"meta": {
"type": "object",
"properties": {
"arena": {
"type": "object"
},
"run_id": {
"type": "string"
},
"llm_used": {
"type": "boolean"
}
}
},
"hooks": {
"type": "array",
"items": {
"type": "object",
"properties": {
"text": {
"type": "string"
},
"formula_id": {
"type": "string"
},
"psychology_trigger": {
"type": "string"
},
"engagement_prediction": {
"type": "string"
}
}
}
}
}
}