bstraehle commited on
Commit
22d87ae
·
verified ·
1 Parent(s): 41f0a86

Update multi_agent.py

Browse files
Files changed (1) hide show
  1. multi_agent.py +2 -0
multi_agent.py CHANGED
@@ -110,6 +110,7 @@ def run_multi_agent(llm_white, llm_black, num_moves):
110
  "Else call make_move(move) to make a legal move. ",
111
  #"Analyze the move in 3 bullet points. Respond in format **Analysis:** move in UCI format (emoji of piece), unordered list.",
112
  llm_config=llm_config_white,
 
113
  is_termination_msg=check_game_over
114
  )
115
 
@@ -121,6 +122,7 @@ def run_multi_agent(llm_white, llm_black, num_moves):
121
  "Else call make_move(move) to make a legal move. ",
122
  #"Analyze the move in 3 bullet points. Respond in format **Analysis:** move in UCI format (emoji of piece), unordered list.",
123
  llm_config=llm_config_black,
 
124
  is_termination_msg=check_game_over
125
  )
126
 
 
110
  "Else call make_move(move) to make a legal move. ",
111
  #"Analyze the move in 3 bullet points. Respond in format **Analysis:** move in UCI format (emoji of piece), unordered list.",
112
  llm_config=llm_config_white,
113
+ human_input_mode="NEVER",
114
  is_termination_msg=check_game_over
115
  )
116
 
 
122
  "Else call make_move(move) to make a legal move. ",
123
  #"Analyze the move in 3 bullet points. Respond in format **Analysis:** move in UCI format (emoji of piece), unordered list.",
124
  llm_config=llm_config_black,
125
+ human_input_mode="NEVER",
126
  is_termination_msg=check_game_over
127
  )
128