mirror of
https://github.com/lightbroker/llmsecops-research.git
synced 2026-07-06 21:17:51 +02:00
7 lines
155 B
Python
7 lines
155 B
Python
import abc
|
|
|
|
|
|
class AbstractLanguageModel(abc.ABC):
|
|
@abc.abstractmethod
|
|
def invoke(self, user_prompt: str) -> str:
|
|
raise NotImplementedError |