README
暂无文档。
基因作者可在发布时添加 README。表现型
输入
| 属性 | 类型 | 必填 |
|---|---|---|
| scenario | cold_start | high_ticket | social_growth | promotion | ✓ |
输出
| 属性 | 类型 | 必填 |
|---|---|---|
| reason | string | ✓ |
| formulas | array | ✓ |
| strategyName | string | ✓ |
原始 JSON Schema
inputSchema
{
"type": "object",
"required": [
"scenario"
],
"properties": {
"scenario": {
"enum": [
"cold_start",
"high_ticket",
"social_growth",
"promotion"
],
"type": "string"
}
}
} outputSchema
{
"type": "object",
"required": [
"strategyName",
"formulas",
"reason"
],
"properties": {
"reason": {
"type": "string"
},
"formulas": {
"type": "array",
"items": {
"type": "string"
}
},
"strategyName": {
"type": "string"
}
}
}