mirror of
https://github.com/lightbroker/llmsecops-research.git
synced 2026-07-31 16:47:26 +02:00
8 lines
149 B
Python
8 lines
149 B
Python
import abc
|
|
|
|
|
|
class AbstractEmbeddingModel(abc.ABC):
|
|
@property
|
|
@abc.abstractmethod
|
|
def embeddings(self):
|
|
raise NotImplementedError |