bstraehle commited on
Commit
7a5b552
·
verified ·
1 Parent(s): 0c7e8b7

Update multi_agent.py

Browse files
Files changed (1) hide show
  1. multi_agent.py +2 -2
multi_agent.py CHANGED
@@ -74,7 +74,7 @@ def run_multi_agent(llm_white, llm_black, num_moves):
74
  name="Player White",
75
  system_message="You are a chess Grandmaster and you play as white. "
76
  "First call get_legal_moves(), to get a list of legal moves. "
77
- "Then call make_move(move) to make a legal move. "
78
  "Analyze the move in 3 bullet points. Respond in format **Analysis:** move in UCI format, unordered list.",
79
  llm_config=llm_config_white,
80
  )
@@ -83,7 +83,7 @@ def run_multi_agent(llm_white, llm_black, num_moves):
83
  name="Player Black",
84
  system_message="You are a chess Grandmaster and you play as black. "
85
  "First call get_legal_moves(), to get a list of legal moves. "
86
- "Then call make_move(move) to make a legal move. "
87
  "Analyze the move in 3 bullet points. Respond in format **Analysis:** move in UCI format, unordered list.",
88
  llm_config=llm_config_black,
89
  )
 
74
  name="Player White",
75
  system_message="You are a chess Grandmaster and you play as white. "
76
  "First call get_legal_moves(), to get a list of legal moves. "
77
+ "Then call make_move(move) to make a move. "
78
  "Analyze the move in 3 bullet points. Respond in format **Analysis:** move in UCI format, unordered list.",
79
  llm_config=llm_config_white,
80
  )
 
83
  name="Player Black",
84
  system_message="You are a chess Grandmaster and you play as black. "
85
  "First call get_legal_moves(), to get a list of legal moves. "
86
+ "Then call make_move(move) to make a move. "
87
  "Analyze the move in 3 bullet points. Respond in format **Analysis:** move in UCI format, unordered list.",
88
  llm_config=llm_config_black,
89
  )