README
No documentation yet.
Gene authors can add a README when publishing.Phenotype
Input
| Property | Type | Req | Description |
|---|---|---|---|
| mode | native | hybrid | llm = native | ||
| count | number = 5 | ||
| topic | string | ✓ | 内容主题 |
| locale | zh-CN | en-US = zh-CN | ||
| platform | xiaohongshu | douyin | wechat | kuaishou | bilibili | shipinhao | toutiao | zhihu | tiktok | youtube | instagram | linkedin | twitter | reddit | facebook | generic | 目标平å° |
Output
| Property | Type |
|---|---|
| meta | object |
| hooks | array |
Raw JSON Schema
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",
"description": "内容主题"
},
"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",
"reddit",
"facebook",
"generic"
],
"type": "string",
"description": "目标平å°"
}
}
} 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"
}
}
}
}
}
}