| { | |
| "type": "object", | |
| "properties": { | |
| "instruction": { | |
| "type": "string", | |
| "description": "The prompt or directive for the model." | |
| }, | |
| "input": { | |
| "type": "string", | |
| "description": "Optional supporting information or context for the instruction." | |
| }, | |
| "output": { | |
| "type": "string", | |
| "description": "Expected or ideal response from the model." | |
| } | |
| }, | |
| "required": ["instruction", "output"] | |
| } | |