Update multi_agent.py
Browse files- multi_agent.py +4 -2
multi_agent.py
CHANGED
@@ -65,7 +65,8 @@ def run_multi_agent(llm, num_turns):
|
|
65 |
system_message="You are a chess player and you play as white. "
|
66 |
"First call get_legal_moves(), to get a list of legal moves. "
|
67 |
"Then call make_move(move) to make a move. "
|
68 |
-
"After a move is made, analyze the move using technical jargon,
|
|
|
69 |
llm_config=llm_config,
|
70 |
)
|
71 |
|
@@ -74,7 +75,8 @@ def run_multi_agent(llm, 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 using technical jargon,
|
|
|
78 |
llm_config=llm_config,
|
79 |
)
|
80 |
|
|
|
65 |
system_message="You are a chess player and you play as white. "
|
66 |
"First call get_legal_moves(), to get a list of legal moves. "
|
67 |
"Then call make_move(move) to make a move. "
|
68 |
+
"After a move is made, analyze the move using technical jargon, don't make any other comments. "
|
69 |
+
"Then continue playing.",
|
70 |
llm_config=llm_config,
|
71 |
)
|
72 |
|
|
|
75 |
system_message="You are a chess player and you play as black. "
|
76 |
"First call get_legal_moves(), to get a list of legal moves. "
|
77 |
"Then call make_move(move) to make a move. "
|
78 |
+
"After a move is made, analyze the move using technical jargon, don't make any other comments. "
|
79 |
+
"Then continue playing.",
|
80 |
llm_config=llm_config,
|
81 |
)
|
82 |
|