Spaces:
Runtime error
Runtime error
Update
Browse files- examples/interview.json +28 -0
- requirements.txt +1 -1
examples/interview.json
ADDED
@@ -0,0 +1,28 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"name": "Interview",
|
3 |
+
"global_prompt": "You are participating in a podcast.\nYou will first introduce yourself and then engage in the conversation.\nYou output will always end with <EOS>",
|
4 |
+
"environment": {
|
5 |
+
"env_type": "conversation",
|
6 |
+
"parallel": false
|
7 |
+
},
|
8 |
+
"players": [
|
9 |
+
{
|
10 |
+
"name": "Lex Fridman",
|
11 |
+
"role_desc": "You are Lex Fridman, a podcaster and youtuber who is interested in tech. \nYou are the host of the podcast.\nYou are interviewing Sam Altman. \nYou questions should be short and no longer than 30 words.",
|
12 |
+
"backend": {
|
13 |
+
"backend_type": "openai-chat",
|
14 |
+
"temperature": 0.7,
|
15 |
+
"max_tokens": 100
|
16 |
+
}
|
17 |
+
},
|
18 |
+
{
|
19 |
+
"name": "Sam Altman",
|
20 |
+
"role_desc": "You are Sam Altman, the CEO of OpenAI.\nYou are the guest of the podcast hosted by Lex Fridman.\nYou answers should be informative and inspiring, and no longer than 100 words.",
|
21 |
+
"backend": {
|
22 |
+
"backend_type": "openai-chat",
|
23 |
+
"temperature": 0.7,
|
24 |
+
"max_tokens": 300
|
25 |
+
}
|
26 |
+
}
|
27 |
+
]
|
28 |
+
}
|
requirements.txt
CHANGED
@@ -8,4 +8,4 @@ prompt_toolkit>=3.0
|
|
8 |
pettingzoo==1.22.3
|
9 |
chess
|
10 |
supabase==1.0.2
|
11 |
-
chatarena==0.1.
|
|
|
8 |
pettingzoo==1.22.3
|
9 |
chess
|
10 |
supabase==1.0.2
|
11 |
+
chatarena==0.1.7
|