Chelsea / llm /hf_interface.py
CineAI's picture
Create hf_interface.py
334f75e verified
raw
history blame
194 Bytes
from abc import ABC, abstractmethod
class HFInterface(ABC):
@abstractmethod
def execution(self):
"""Method execution LLM model based on HuggingFace or Langchain"""
pass