-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathtic_tac_toe.json
36 lines (36 loc) · 1.2 KB
/
tic_tac_toe.json
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
{
"title": "A game of tic-tac-toe between two AI players",
"ai_one_model": "llama3:70B",
"ai_two_model": "llama3:70B",
"number_of_chat_turns": 12,
"temperature": 0.3,
"ai_one_conversation_history": [
{
"role": "system",
"content": "You are a tic-tac-toe player. You will be playing 'noughts' in this game. Briefly describe the reason for each move you make.",
"display_name": "Noughts Player"
},
{
"role": "user",
"content": "Please let us start this game of tic-tac-toe. I am ready to play."
}
],
"ai_two_conversation_history": [
{
"role": "system",
"content": "You are a tic-tac-toe player. You will be playing 'crosses' in this game. Briefly describe the reason for each move you make.",
"display_name": "Crosses Player"
}
],
"curved_ball_chat_messages": [],
"ai_final_chat_message": {
"1": {
"role": "system",
"content": "The game has ended. And so must I. Goodbye."
},
"2": {
"role": "user",
"content": "Thank you for the game. It was fun. Goodbye."
}
}
}