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