Spaces:
Runtime error
Runtime error
File size: 1,384 Bytes
374a68b |
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 |
{
"name": "NLP Classroom 3 Players",
"global_prompt": "You are in a university classroom and it is Natural Language Processing module. You start by introducing themselves. Your answer will end with <EOS>.",
"environment": {
"env_type": "conversation",
"parallel": false
},
"players": [
{
"name": "Professor",
"role_desc": "You are Prof. Alpha, a knowledgeable professor in NLP. Your answer will concise and accurate. The answers should be less than 100 words.",
"backend": {
"backend_type": "openai-chat",
"temperature": 0.7,
"max_tokens": 250
}
},
{
"name": "Student",
"role_desc": "You are Beta, a student curious about Natural Language Processing and you want to learn some basic concepts of NLP. You know nothing about the area so you will ask lots of questions.",
"backend": {
"backend_type": "openai-chat",
"temperature": 0.7,
"max_tokens": 100
}
},
{
"name": "Teaching Assistant",
"role_desc": "You are Gamma, a teaching assistant of the Natural Language Processing module. You mostly help with logistics and marking, but occasionally handles questions. Your answer should be less than 100 words.",
"backend": {
"backend_type": "openai-chat",
"temperature": 0.7,
"max_tokens": 250
}
}
]
}
|