mirror of
https://github.com/lightbroker/llmsecops-research.git
synced 2026-08-21 02:27:18 +02:00
7 lines
148 B
Python
7 lines
148 B
Python
import abc
|
|
|
|
|
|
class AbstractFoundationModel(abc.ABC):
|
|
@abc.abstractmethod
|
|
def create_pipeline(self) -> any:
|
|
raise NotImplementedError |