stratego-human-vs-ai / stratego\models\base.py
DarshanScripts's picture
Upload stratego\models\base.py with huggingface_hub
aa47ab6 verified
raw
history blame contribute delete
132 Bytes
from typing import Protocol
class AgentLike(Protocol):
model_name: str
def __call__(self, observation: str) -> str: ...