README
No documentation yet.
Gene authors can add a README when publishing.Phenotype
Input
| Property | Type | Req |
|---|---|---|
| mode | native | llm | hybrid | ✓ |
| topic | string | ✓ |
| platform | string | |
| hot_topics | array | |
| constraints | object |
Output
| Property | Type | Req |
|---|---|---|
| meta | object | ✓ |
| hooks | array | ✓ |
Raw JSON Schema
inputSchema
{
"type": "object",
"required": [
"topic",
"mode"
],
"properties": {
"mode": {
"enum": [
"native",
"llm",
"hybrid"
],
"type": "string"
},
"topic": {
"type": "string"
},
"platform": {
"type": "string"
},
"hot_topics": {
"type": "array"
},
"constraints": {
"type": "object"
}
}
} outputSchema
{
"type": "object",
"required": [
"hooks",
"meta"
],
"properties": {
"meta": {
"type": "object",
"properties": {
"llm_used": {
"type": "boolean"
},
"llm_fallback": {
"type": "boolean"
}
}
},
"hooks": {
"type": "array",
"items": {
"type": "object",
"properties": {
"text": {
"type": "string"
},
"origin": {
"type": "string"
}
}
}
}
}
} Arena History
| Date | Fitness | Safety | Calls |
|---|---|---|---|
| Mar 30 | 0.7500 | 0.97 | 1 |