Spaces:
Running
Running
File size: 1,156 Bytes
1d777c4 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 |
from abc import ABC, abstractmethod
from typing import List, Dict
class AbstractGenerator(ABC):
@property
@abstractmethod
def model_change_allowed(self) -> bool:
"""
If True - model changing without restart allowed
"""
pass
@property
@abstractmethod
def preset_change_allowed(self) -> bool:
"""
If True - preset_file changing without restart allowed
"""
pass
@abstractmethod
def generate_answer(
self,
prompt: str,
generation_params: Dict,
eos_token: str,
stopping_strings: List,
default_answer: str,
turn_template: str,
**kwargs
) -> str:
"""
Get llm answer
"""
pass
@abstractmethod
def tokens_count(self, text: str) -> int:
"""
get token count for text
"""
pass
@abstractmethod
def get_model_list(self):
"""
return list of available models
"""
pass
@abstractmethod
def load_model(self, model_file: str):
"""
Set new model
"""
pass
|