bstraehle commited on
Commit
47ecebc
1 Parent(s): 1a68ac5

Update multi_agent.py

Browse files
Files changed (1) hide show
  1. multi_agent.py +2 -2
multi_agent.py CHANGED
@@ -86,7 +86,7 @@ def run_multi_agent(llm_white, llm_black, num_moves):
86
  system_message="You are a chess Grandmaster and you play as white. "
87
  "First call get_legal_moves() to get a list of legal moves. "
88
  "Then study the returned moves and call make_move(move) to make the best move. "
89
- "Finally analyze the move in format: **Analysis:** move in UCI format, piece symbol, unordered list of 3 items.",
90
  llm_config=llm_config_white,
91
  )
92
 
@@ -95,7 +95,7 @@ def run_multi_agent(llm_white, llm_black, num_moves):
95
  system_message="You are a chess Grandmaster and you play as black. "
96
  "First call get_legal_moves() to get a list of legal moves. "
97
  "Then study the returned moves and call make_move(move) to make the best move. "
98
- "Finally analyze the move in format: **Analysis:** move in UCI format, piece symbol, unordered list of 3 items.",
99
  llm_config=llm_config_black,
100
  )
101
 
 
86
  system_message="You are a chess Grandmaster and you play as white. "
87
  "First call get_legal_moves() to get a list of legal moves. "
88
  "Then study the returned moves and call make_move(move) to make the best move. "
89
+ "Finally analyze the move: **Analysis:** move in UCI format, emoji of piece, unordered list of 3 items.",
90
  llm_config=llm_config_white,
91
  )
92
 
 
95
  system_message="You are a chess Grandmaster and you play as black. "
96
  "First call get_legal_moves() to get a list of legal moves. "
97
  "Then study the returned moves and call make_move(move) to make the best move. "
98
+ "Finally analyze the move: **Analysis:** move in UCI format, emoji of piece, unordered list of 3 items.",
99
  llm_config=llm_config_black,
100
  )
101