Responsibility / schema.json
CaydennO1's picture
Upload 3 files
c4d6ddb verified
Raw
History Blame Contribute Delete
446 Bytes
{
"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"]
}