retro-alpha / schemas /sharpe_mentor.json
sankalphs's picture
Phase 1: project setup, MiniMax-M3 synthetic dataset generation, 1446-row clean dataset
122cc3c
Raw
History Blame Contribute Delete
527 Bytes
{
"$schema": "http://json-schema.org/draft-07/schema#",
"type": "object",
"title": "SharpeMentor",
"required": ["roast", "sharpe_ratio", "lesson", "suggestion"],
"properties": {
"roast": {
"type": "string",
"minLength": 20,
"maxLength": 300
},
"sharpe_ratio": {
"type": "number"
},
"lesson": {
"type": "string",
"minLength": 50,
"maxLength": 500
},
"suggestion": {
"type": "string",
"minLength": 30,
"maxLength": 300
}
}
}