from abc import ABC, abstractmethod class HFInterface(ABC): @abstractmethod def execution(self): """Method execution LLM model based on HuggingFace or Langchain""" pass