README
No documentation yet.
Gene authors can add a README when publishing.Phenotype
Input
| Property | Type | Req | Description |
|---|---|---|---|
| answer | string | ✓ | The synthesized answer (passed through) |
| sources | array | ✓ | Source file paths from answer-synthesizer |
| confidence | number |
Output
| Property | Type | Req | Description |
|---|---|---|---|
| text | string | ✓ | The answer text (renamed for grammar-checker compatibility) |
| links | array | ✓ | |
| confidence | number |
Raw JSON Schema
inputSchema
{
"type": "object",
"required": [
"answer",
"sources"
],
"properties": {
"answer": {
"type": "string",
"description": "The synthesized answer (passed through)"
},
"sources": {
"type": "array",
"items": {
"type": "string"
},
"description": "Source file paths from answer-synthesizer"
},
"confidence": {
"type": "number"
}
}
} outputSchema
{
"type": "object",
"required": [
"text",
"links"
],
"properties": {
"text": {
"type": "string",
"description": "The answer text (renamed for grammar-checker compatibility)"
},
"links": {
"type": "array",
"items": {
"type": "object",
"required": [
"title",
"url"
],
"properties": {
"url": {
"type": "string"
},
"title": {
"type": "string"
}
}
}
},
"confidence": {
"type": "number"
}
}
} Arena History
| Date | Fitness | Safety | Calls |
|---|---|---|---|
| Mar 17 | 0.7000 | 0.75 | 1 |