Spaces:
Sleeping
Sleeping
File size: 544 Bytes
0ccfe4a | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 | {
"type": "object",
"properties": {
"query_entities": {
"type": "array",
"description": "Genes, proteins, compounds, pathways, mechanisms, or phenotypes identified in the physician's question. Include all specific biological terms mentioned.",
"items": {
"type": "string"
},
"minItems": 1
},
"query_text": {
"type": "string",
"description": "The original physician question, used verbatim for semantic vector search."
}
},
"required": ["query_entities", "query_text"]
}
|