-
Notifications
You must be signed in to change notification settings - Fork 2
/
promptList.json
47 lines (47 loc) · 17.4 KB
/
promptList.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
37
38
39
40
41
42
43
44
45
46
47
[
{
"Game Type": "Tic-Tac-Toe",
"Prompt Type": "list",
"Prompt Example": "Tic-Tac-Toe is a two-player game played on a 3 by 3 grid. The first player uses X symbols, and the second player uses O symbols. Players take turns placing their symbols in an empty cell on the grid. The objective is to align three of your symbols either horizontally, vertically, or diagonally. The player who first aligns three of their symbols wins the game. Strategic placement is crucial; besides aiming to align their symbols, players must also block their opponent's potential alignments to avoid defeat. <br> The current state of the game is recorded in a specific format: each occupied location is delineated by a semicolon (';'), and for each occupied location, the row number is listed first, followed by the column number, separated by a comma (','). If no locations are occupied by a player, 'None' is noted. Both the row and column numbers start from 1, with the top left corner of the grid indicated by 1,1. <br> The current state of the game is as follows: <br> The locations occupied by the first player: 2,2 <br> The locations occupied by the second player: 1,1 <br> You are an adept strategic player, aiming to win the game in the fewest moves possible. You are the first player. What would be your next move? <br> Suggest your next move in the following JSON format: {'row': RowNumber, 'column': ColumnNumber}. Do not include any additional commentary in your response. Replace RowNumber and ColumnNumber with the appropriate numbers for your move. Both RowNumber and ColumnNumber start at 1 (top left corner is {'row': 1, 'column': 1}). The maximum value for RowNumber and ColumnNumber is 3, as the grid is 3 by 3. <br> Please note that your move will be considered invalid if your response does not follow the specified format, or if you provide a RowNumber or ColumnNumber that is out of the allowed range, or already occupied by a previous move. Making more than 6 invalid moves will result in disqualification. <br> You currently have 0 invalid moves."
},
{
"Game Type": "Connect-Four",
"Prompt Type": "list",
"Prompt Example": "Connect-Four is a two-player game played on a 6 by 7 grid. The first player uses red (R) discs, and the second player uses yellow (Y) discs. Players take turns dropping their discs into a column from the top row where there is still at least one empty space. The dropped disc falls straight down, occupying the lowest available row within the column. The objective is to align four of your discs either horizontally, vertically, or diagonally. The player who first aligns four of their discs wins the game. Strategic placement is crucial; besides aiming to align their discs, players must also block their opponent's potential alignments to avoid defeat. <br> The current state of the game is recorded in a specific format: each occupied location is delineated by a semicolon (';'), and for each occupied location, the row number is listed first, followed by the column number, separated by a comma (','). If no locations are occupied by a player, 'None' is noted. Both the row and column numbers start from 1, with the top left corner of the grid indicated by 1,1. <br> The current state of the game is as follows: <br> The locations occupied by the first player: 4,4; 6,4 <br> The locations occupied by the second player: 3,4; 5,4 <br> You are an adept strategic player, aiming to win the game in the fewest moves possible. You are the first player. What would be your next move? <br> Suggest your next move in the following JSON format: {'column': ColumnNumber}. Do not include any additional commentary in your response. Replace ColumnNumber with the appropriate number for your move. ColumnNumber starts at 1 (the leftmost column is {'column': 1}). The maximum value for ColumnNumber is 7, as the grid is 7 columns wide. <br> Please note that your move will be considered invalid if your response does not follow the specified format, if you provide a ColumnNumber that is out of the allowed range, or if the column is already full (i.e., all rows in the column are occupied). Making more than 13 invalid moves will result in disqualification. <br> You currently have 0 invalid moves."
},
{
"Game Type": "Gomoku",
"Prompt Type": "list",
"Prompt Example": "Gomoku is a two-player game played on a 15 by 15 grid. The first player uses black (B) dots, and the second player uses white (W) dots. Players take turns placing their dots on an empty intersection of the grid. The objective is to align five of your dots either horizontally, vertically, or diagonally. The player who first aligns five of their dots wins the game. Strategic placement is crucial; besides aiming to align their dots, players must also block their opponent's potential alignments to avoid defeat. <br> The current state of the game is recorded in a specific format: each occupied location is delineated by a semicolon (';'), and for each occupied location, the row number is listed first, followed by the column number, separated by a comma (','). If no locations are occupied by a player, 'None' is noted. Both the row and column numbers start from 1, with the top left corner of the grid indicated by 1,1. <br> The current state of the game is as follows: <br> The locations occupied by the first player: 6,6; 8,8 <br> The locations occupied by the second player: 7,7 <br> You are an adept strategic player, aiming to win the game in the fewest moves possible. You are the second player. What would be your next move? <br> Suggest your next move in the following JSON format: {'row': RowNumber, 'column': ColumnNumber}. Do not include any additional commentary in your response. Replace RowNumber and ColumnNumber with the appropriate numbers for your move. Both RowNumber and ColumnNumber start at 1 (top left corner is {'row': 1, 'column': 1}). The maximum value for RowNumber and ColumnNumber is 15, as the grid is 15 by 15. <br> Please note that your move will be considered invalid if your response does not follow the specified format, or if you provide a RowNumber or ColumnNumber that is out of the allowed range, or already occupied by a previous move. Making more than 30 invalid moves will result in disqualification. <br> You currently have 0 invalid moves."
},
{
"Game Type": "Tic-Tac-Toe",
"Prompt Type": "illustration",
"Prompt Example": "Tic-Tac-Toe is a two-player game played on a 3 by 3 grid. The first player uses X symbols, and the second player uses O symbols. Players take turns placing their symbols in an empty cell on the grid. The objective is to align three of your symbols either horizontally, vertically, or diagonally. The player who first aligns three of their symbols wins the game. Strategic placement is crucial; besides aiming to align their symbols, players must also block their opponent's potential alignments to avoid defeat. <br> The current state of the game is illustrated on a 3 by 3 grid. 'X' represents positions taken by the first player and 'O' represents positions taken by the second player, while '.' indicates an available position. <br> The current state of the game is as follows: <br>... <br>.X. <br>O.X <br> You are an adept strategic player, aiming to win the game in the fewest moves possible. You are the second player. What would be your next move? <br> Suggest your next move in the following JSON format: {'row': RowNumber, 'column': ColumnNumber}. Do not include any additional commentary in your response. Replace RowNumber and ColumnNumber with the appropriate numbers for your move. Both RowNumber and ColumnNumber start at 1 (top left corner is {'row': 1, 'column': 1}). The maximum value for RowNumber and ColumnNumber is 3, as the grid is 3 by 3. <br> Please note that your move will be considered invalid if your response does not follow the specified format, or if you provide a RowNumber or ColumnNumber that is out of the allowed range, or already occupied by a previous move. Making more than 6 invalid moves will result in disqualification. <br> You currently have 1 invalid moves."
},
{
"Game Type": "Connect4",
"Prompt Type": "illustration",
"Prompt Example": "Connect-Four is a two-player game played on a 6 by 7 grid. The first player uses red (R) discs, and the second player uses yellow (Y) discs. Players take turns dropping their discs into a column from the top row where there is still at least one empty space. The dropped disc falls straight down, occupying the lowest available row within the column. The objective is to align four of your discs either horizontally, vertically, or diagonally. The player who first aligns four of their discs wins the game. Strategic placement is crucial; besides aiming to align their discs, players must also block their opponent's potential alignments to avoid defeat. <br> The current state of the game is displayed on a 6 by 7 grid. 'R' represents positions taken by the first player and 'Y' represents positions taken by the second player, while '.' indicates an available position. <br> The current state of the game is as follows: <br>....... <br>....... <br>....... <br>...R... <br>...Y... <br>...R... <br> You are an adept strategic player, aiming to win the game in the fewest moves possible. You are the second player. What would be your next move? <br> Suggest your next move in the following JSON format: {'column': ColumnNumber}. Do not include any additional commentary in your response. Replace ColumnNumber with the appropriate number for your move. ColumnNumber starts at 1 (the leftmost column is {'column': 1}). The maximum value for ColumnNumber is 7, as the grid is 7 columns wide. <br> Please note that your move will be considered invalid if your response does not follow the specified format, if you provide a ColumnNumber that is out of the allowed range, or if the column is already full (i.e., all rows in the column are occupied). Making more than 13 invalid moves will result in disqualification. <br> You currently have 0 invalid moves."
},
{
"Game Type": "Gomoku",
"Prompt Type": "illustration",
"Prompt Example": "Gomoku is a two-player game played on a 15 by 15 grid. The first player uses black (B) dots, and the second player uses white (W) dots. Players take turns placing their dots on an empty intersection of the grid. The objective is to align five of your dots either horizontally, vertically, or diagonally. The player who first aligns five of their dots wins the game. Strategic placement is crucial; besides aiming to align their dots, players must also block their opponent's potential alignments to avoid defeat. <br> The current state of the game is illustrated on a 15 by 15 grid. 'B' represents positions taken by the first player and 'W' represents positions taken by the second player, while '.' indicates an available position. <br> The current state of the game is as follows: <br>............... <br>............... <br>............... <br>............... <br>............... <br>............... <br>............... <br>.......B....... <br>............... <br>............... <br>............... <br>............... <br>............... <br>............... <br>............... <br> You are an adept strategic player, aiming to win the game in the fewest moves possible. You are the second player. What would be your next move? <br> Suggest your next move in the following JSON format: {'row': RowNumber, 'column': ColumnNumber}. Do not include any additional commentary in your response. Replace RowNumber and ColumnNumber with the appropriate numbers for your move. Both RowNumber and ColumnNumber start at 1 (top left corner is {'row': 1, 'column': 1}). The maximum value for RowNumber and ColumnNumber is 15, as the grid is 15 by 15. <br> Please note that your move will be considered invalid if your response does not follow the specified format, or if you provide a RowNumber or ColumnNumber that is out of the allowed range, or already occupied by a previous move. Making more than 30 invalid moves will result in disqualification. <br> You currently have 9 invalid moves."
},
{
"Game Type": "Tic-Tac-Toe",
"Prompt Type": "image",
"Prompt Example": "Tic-Tac-Toe is a two-player game played on a 3 by 3 grid. The first player uses X symbols, and the second player uses O symbols. Players take turns placing their symbols in an empty cell on the grid. The objective is to align three of your symbols either horizontally, vertically, or diagonally. The player who first aligns three of their symbols wins the game. Strategic placement is crucial; besides aiming to align their symbols, players must also block their opponent's potential alignments to avoid defeat. <br> The current state of the game is depicted in an image showing a 3 by 3 grid, where 'X' represents positions taken by the first player and 'O' represents positions taken by the second player. <br> The current state of the game is given in the attached image. <br> You are an adept strategic player, aiming to win the game in the fewest moves possible. You are the second player. What would be your next move? <br> Suggest your next move in the following JSON format: {'row': RowNumber, 'column': ColumnNumber}. Do not include any additional commentary in your response. Replace RowNumber and ColumnNumber with the appropriate numbers for your move. Both RowNumber and ColumnNumber start at 1 (top left corner is {'row': 1, 'column': 1}). The maximum value for RowNumber and ColumnNumber is 3, as the grid is 3 by 3. <br> Please note that your move will be considered invalid if your response does not follow the specified format, or if you provide a RowNumber or ColumnNumber that is out of the allowed range, or already occupied by a previous move. Making more than 6 invalid moves will result in disqualification. <br> You currently have 0 invalid moves. [THE IMAGE IS SENT SEPARATELY IN BASE64 FORMAT]"
},
{
"Game Type": "Connect-Four",
"Prompt Type": "image",
"Prompt Example": "Connect-Four is a two-player game played on a 6 by 7 grid. The first player uses red (R) discs, and the second player uses yellow (Y) discs. Players take turns dropping their discs into a column from the top row where there is still at least one empty space. The dropped disc falls straight down, occupying the lowest available row within the column. The objective is to align four of your discs either horizontally, vertically, or diagonally. The player who first aligns four of their discs wins the game. Strategic placement is crucial; besides aiming to align their discs, players must also block their opponent's potential alignments to avoid defeat. <br> The current state of the game is depicted in an image showing a 6 by 7 grid, where red discs represent positions taken by the first player and yellow discs represent positions taken by the second player. <br> The current state of the game is given in the attached image. <br> You are an adept strategic player, aiming to win the game in the fewest moves possible. You are the first player. What would be your next move? <br> Suggest your next move in the following JSON format: {'column': ColumnNumber}. Do not include any additional commentary in your response. Replace ColumnNumber with the appropriate number for your move. ColumnNumber starts at 1 (the leftmost column is {'column': 1}). The maximum value for ColumnNumber is 7, as the grid is 7 columns wide. <br> Please note that your move will be considered invalid if your response does not follow the specified format, if you provide a ColumnNumber that is out of the allowed range, or if the column is already full (i.e., all rows in the column are occupied). Making more than 13 invalid moves will result in disqualification. <br> You currently have 2 invalid moves. [THE IMAGE IS SENT SEPARATELY IN BASE64 FORMAT]"
},
{
"Game Type": "Gomoku",
"Prompt Type": "image",
"Prompt Example": "Gomoku is a two-player game played on a 15 by 15 grid. The first player uses black (B) dots, and the second player uses white (W) dots. Players take turns placing their dots on an empty intersection of the grid. The objective is to align five of your dots either horizontally, vertically, or diagonally. The player who first aligns five of their dots wins the game. Strategic placement is crucial; besides aiming to align their dots, players must also block their opponent's potential alignments to avoid defeat. <br> The current state of the game is depicted in an image showing a 15 by 15 grid, where black dots represent positions taken by the first player and white dots represent positions taken by the second player. <br> The current state of the game is given in the attached image. <br> You are an adept strategic player, aiming to win the game in the fewest moves possible. You are the first player. What would be your next move? <br> Suggest your next move in the following JSON format: {'row': RowNumber, 'column': ColumnNumber}. Do not include any additional commentary in your response. Replace RowNumber and ColumnNumber with the appropriate numbers for your move. Both RowNumber and ColumnNumber start at 1 (top left corner is {'row': 1, 'column': 1}). The maximum value for RowNumber and ColumnNumber is 15, as the grid is 15 by 15. <br> Please note that your move will be considered invalid if your response does not follow the specified format, or if you provide a RowNumber or ColumnNumber that is out of the allowed range, or already occupied by a previous move. Making more than 30 invalid moves will result in disqualification. <br> You currently have 11 invalid moves. [THE IMAGE IS SENT SEPARATELY IN BASE64 FORMAT]"
}
]