File size: 324 Bytes
85e3d20
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
from abc import ABC, abstractmethod

class User(ABC):
    """Base class for interface to user"""
    @abstractmethod
    def interact(relevant_history: str, entries: dict, observation: str) -> str:
        pass


    @staticmethod
    def indent_text(s, n):
        return "\n".join(" "*n + line for line in s.split("\n"))