Workflow prompt
Create a textbook page Call App that quizzes the caller on the page topic, explains missed concepts, and saves score and weak areas.
Output schema
{
"outcome": "textbook page call outcome",
"fields": [
{
"description": "subject captured during the call.",
"name": "subject",
"required": true,
"type": "text"
},
{
"description": "page topic captured during the call.",
"name": "page_topic",
"required": true,
"type": "text"
},
{
"description": "student answer captured during the call.",
"name": "student_answer",
"required": true,
"type": "text"
},
{
"description": "confidence captured during the call.",
"name": "confidence",
"required": true,
"type": "text"
},
{
"description": "weak concept captured during the call.",
"name": "weak_concept",
"required": true,
"type": "text"
}
]
}