Xmaster6y commited on
Commit
12a270b
1 Parent(s): cfe2e8a
Files changed (1) hide show
  1. src/play_interface.py +1 -1
src/play_interface.py CHANGED
@@ -63,7 +63,7 @@ def play_ai_move(
63
  top_k: int = 3,
64
  ):
65
  uci_move = inference_fn(
66
- inputs=f"FEN: {current_board.fen()}\nMOVE:",
67
  temperature=temperature,
68
  top_k=top_k,
69
  )
 
63
  top_k: int = 3,
64
  ):
65
  uci_move = inference_fn(
66
+ prompt=f"FEN: {current_board.fen()}\nMOVE:",
67
  temperature=temperature,
68
  top_k=top_k,
69
  )