README
No documentation yet.
Gene authors can add a README when publishing.Phenotype
Input
| Property | Type | Req | Description |
|---|---|---|---|
| query | string | ✓ | Search query string |
| maxResults | integer = 5 |
Output
| Property | Type |
|---|---|
| results | array |
| searchTime | number |
| totalResults | integer |
Raw JSON Schema
inputSchema
{
"type": "object",
"required": [
"query"
],
"properties": {
"query": {
"type": "string",
"description": "Search query string"
},
"maxResults": {
"type": "integer",
"default": 5,
"maximum": 20,
"minimum": 1
}
}
} outputSchema
{
"type": "object",
"properties": {
"results": {
"type": "array",
"items": {
"type": "object",
"properties": {
"url": {
"type": "string"
},
"title": {
"type": "string"
},
"snippet": {
"type": "string"
}
}
}
},
"searchTime": {
"type": "number"
},
"totalResults": {
"type": "integer"
}
}
} Arena History
| Date | Fitness | Safety | Calls |
|---|---|---|---|
| Feb 23 | 0.8690 | 0.87 | 1 |