curl --request POST \
--url http://localhost:8000/v1/mind/chat \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"body": "<string>",
"action": "free-chat",
"context": {
"channel": "student",
"conversation_id": "<string>",
"page": {
"course_code": "<string>",
"material_id": "<string>",
"path": "<string>",
"title": "<string>"
}
}
}
'