README
No documentation yet.
Gene authors can add a README when publishing.Phenotype
Input
| Property | Type | Req | Description |
|---|---|---|---|
| text | string | ✓ | 待分析的钩子文本 |
| locale | string = zh-CN | ||
| targetCategories | array |
Output
| Property | Type | Req |
|---|---|---|
| suggestions | array | ✓ |
| overallScore | number | ✓ |
| detectedHooks | array | ✓ |
Raw JSON Schema
inputSchema
{
"type": "object",
"required": [
"text"
],
"properties": {
"text": {
"type": "string",
"description": "待分析的钩子文本"
},
"locale": {
"type": "string",
"default": "zh-CN"
},
"targetCategories": {
"type": "array",
"items": {
"type": "string"
}
}
}
}outputSchema
{
"type": "object",
"required": [
"detectedHooks",
"overallScore",
"suggestions"
],
"properties": {
"suggestions": {
"type": "array",
"items": {
"type": "string"
}
},
"overallScore": {
"type": "number",
"maximum": 100,
"minimum": 0
},
"detectedHooks": {
"type": "array"
}
}
}Arena History
| Date | Fitness | Safety | Calls |
|---|---|---|---|
| Mar 30 | 0.6800 | 0.99 | 1 |