LovecaSim / ai /agents /agent_base.py
trioskosmos's picture
Upload ai/agents/agent_base.py with huggingface_hub
9ae5bf0 verified
from engine.game.game_state import GameState
class Agent:
def choose_action(self, state: GameState, player_id: int) -> int:
raise NotImplementedError