Update multi_agent.py
Browse files- multi_agent.py +2 -2
multi_agent.py
CHANGED
@@ -64,7 +64,7 @@ def run_multi_agent(llm_white, llm_black, num_turns):
|
|
64 |
system_message="You are a chess player and you play as white. "
|
65 |
"First call get_legal_moves(), to get a list of legal moves. "
|
66 |
"Then call make_move(move) to make a move. "
|
67 |
-
"After a move is made, analyze the move in 3 bullet points. Respond in format **Analysis:** move from/to, unordered list, your turn. "
|
68 |
"Then continue playing.",
|
69 |
llm_config=llm_config_white,
|
70 |
)
|
@@ -74,7 +74,7 @@ def run_multi_agent(llm_white, llm_black, num_turns):
|
|
74 |
system_message="You are a chess player and you play as black. "
|
75 |
"First call get_legal_moves(), to get a list of legal moves. "
|
76 |
"Then call make_move(move) to make a move. "
|
77 |
-
"After a move is made, analyze the move in 3 bullet points. Respond in format **Analysis:** move from/to, unordered list, your turn. "
|
78 |
"Then continue playing.",
|
79 |
llm_config=llm_config_black,
|
80 |
)
|
|
|
64 |
system_message="You are a chess player and you play as white. "
|
65 |
"First call get_legal_moves(), to get a list of legal moves. "
|
66 |
"Then call make_move(move) to make a move. "
|
67 |
+
"After a move is made, analyze the move in 3 bullet points. Respond in format **Analysis:** move from/to, unordered list, your turn player black. "
|
68 |
"Then continue playing.",
|
69 |
llm_config=llm_config_white,
|
70 |
)
|
|
|
74 |
system_message="You are a chess player and you play as black. "
|
75 |
"First call get_legal_moves(), to get a list of legal moves. "
|
76 |
"Then call make_move(move) to make a move. "
|
77 |
+
"After a move is made, analyze the move in 3 bullet points. Respond in format **Analysis:** move from/to, unordered list, your turn player white. "
|
78 |
"Then continue playing.",
|
79 |
llm_config=llm_config_black,
|
80 |
)
|