Spaces:
Running
Running
File size: 1,313 Bytes
514cc66 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 |
{
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "Answer file schema",
"type": "object",
"properties": {
"id": {
"type": "integer",
"description": "Question ID"
},
"question": {
"type": "string",
"description": "The question"
},
"passages": {
"type": "array",
"description": "Passages used and related FineWeb doc IDs, ordered by decreasing importance",
"items": {
"type": "object",
"properties": {
"passage": {
"type": "string",
"description": "Passage text"
},
"doc_IDs": {
"type": "array",
"description": "Passage related FineWeb doc IDs, ordered by decreasing importance",
"items": {
"type": "string",
"description": "FineWeb doc ID, e.g., <urn:uuid:d69cbebc-133a-4ebe-9378-68235ec9f091>"
}
}
},
"required": ["passage", "doc_IDs"]
}
},
"final_prompt": {
"type": "string",
"description": "Final prompt, as submitted to Falcon LLM"
},
"answer": {
"type": "string",
"description": "Your answer"
}
},
"required": ["id", "question", "passages", "final_prompt", "answer"]
} |