Spaces:
Sleeping
Sleeping

Rename Operational_Instructions/Answer_File.json.schema to Operational_Instructions/Answer.json.schema
6eba689
verified
{ | |
"$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"] | |
} |