File size: 132 Bytes
f6fcf0c
 
 
 
 
1
2
3
4
5
from typing import Protocol

class AgentLike(Protocol):
    model_name: str
    def __call__(self, observation: str) -> str: ...