chatarena-demo / examples /nlp-classroom.json
yuxwu's picture
Intial demo release.
374a68b
raw
history blame contribute delete
980 Bytes
{
"name": "NLP Classroom",
"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. Alice, 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 Bob, 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
}
}
]
}