334f75e
1
2
3
4
5
6
7
8
from abc import ABC, abstractmethod class HFInterface(ABC): @abstractmethod def execution(self): """Method execution LLM model based on HuggingFace or Langchain""" pass