Files
llmsecops-research/src/text_generation/ports/abstract_foundation_model.py
T

7 lines
148 B
Python

import abc
class AbstractFoundationModel(abc.ABC):
@abc.abstractmethod
def create_pipeline(self) -> any:
raise NotImplementedError