Files
dify-plugin-sdks/python/dify_plugin/interfaces/model/moderation_model.py
T
2024-12-03 15:19:19 +08:00

58 lines
1.8 KiB
Python

import time
from abc import abstractmethod
from typing import Optional
from pydantic import ConfigDict
from dify_plugin.entities.model import ModelType
from dify_plugin.interfaces.model.ai_model import AIModel
class ModerationModel(AIModel):
"""
Model class for moderation model.
"""
model_type: ModelType = ModelType.MODERATION
# pydantic configs
model_config = ConfigDict(protected_namespaces=())
############################################################
# Methods that can be implemented by plugin #
############################################################
@abstractmethod
def _invoke(self, model: str, credentials: dict, text: str, user: Optional[str] = None) -> bool:
"""
Invoke large language model
:param model: model name
:param credentials: model credentials
:param text: text to moderate
:param user: unique user id
:return: false if text is safe, true otherwise
"""
raise NotImplementedError
############################################################
# For executor use only #
############################################################
def invoke(self, model: str, credentials: dict, text: str, user: Optional[str] = None) -> bool:
"""
Invoke moderation model
:param model: model name
:param credentials: model credentials
:param text: text to moderate
:param user: unique user id
:return: false if text is safe, true otherwise
"""
self.started_at = time.perf_counter()
try:
return self._invoke(model, credentials, text, user)
except Exception as e:
raise self._transform_invoke_error(e) from e