File size: 197 Bytes
02c783d
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
from abc import ABC, abstractmethod
from typing import List


class BaseModel(ABC):
    def generate(self, messages: List, **kwargs) -> str:
        """Generate text from a prompt."""
        pass