Spaces:
Runtime error
Runtime error
File size: 447 Bytes
475709b |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 |
class ModelInterface:
def __init__(self, model_name: str):
pass
self.current_moves = ""
#Appends model's next move to the current UCI moves and returns them
def get_next_move(self):
pass
#Inputs the current UCI moves with the opponent's move at the end
def add_opp_move(self, moves: str):
pass
#Checks if the last move is legal
def is_legal(self, move: str):
pass
|