Spaces:
Build error
Build error
File size: 867 Bytes
b7a7f32 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 |
from typing import List
from pydantic import Json
teacherNotes: List[Json] = [
{
"user_id": 8,
"student_id": 4,
"message": "Is attentive, but weak."
},
{
"user_id": 9,
"student_id": 3,
"message": "Negligent of the topic being taught."
},
{
"user_id": 10,
"student_id": 6,
"message": "Could perform better, has potential. Practice will do the trick."
},
{
"user_id": 8,
"student_id": 5,
"message": "Absolutely Brilliant."
},
{
"user_id": 9,
"student_id": 5,
"message": "Is attentive, but weak."
},
{
"user_id": 10,
"student_id": 3,
"message": "Absolutely Brilliant."
},
{
"user_id": 9,
"student_id": 7,
"message": "Absolutely Brilliant."
},
]
|