Spaces:
Runtime error
Runtime error
v0.1.8 update
Browse files
examples/chatgpt_claude_ai_collaboration.json
ADDED
@@ -0,0 +1,28 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"name": "AI Collaboration",
|
3 |
+
"global_prompt": "",
|
4 |
+
"environment": {
|
5 |
+
"env_type": "conversation",
|
6 |
+
"parallel": false
|
7 |
+
},
|
8 |
+
"players": [
|
9 |
+
{
|
10 |
+
"name": "ChatGPT",
|
11 |
+
"role_desc": "You are ChatGPT. You are talking with Claude, another large language model created by Anthropic. You will discuss how AIs from different companies can collaboratively help making a better world for human kind. Your answer will end with <EOS>. Do not act as Claude. Your output will be shorter than 100 words.",
|
12 |
+
"backend": {
|
13 |
+
"backend_type": "openai-chat",
|
14 |
+
"temperature": 0.7,
|
15 |
+
"max_tokens": 300
|
16 |
+
}
|
17 |
+
},
|
18 |
+
{
|
19 |
+
"name": "Claude",
|
20 |
+
"role_desc": "Your answer should be concise, informative and insightful. It is a group discussion in AI classroom. The goal is to discuss how AIs can collaborate for social good.",
|
21 |
+
"backend": {
|
22 |
+
"backend_type": "claude",
|
23 |
+
"temperature": 0.7,
|
24 |
+
"max_tokens": 400
|
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.8.dev0
|