mirror of
https://github.com/langgenius/dify-plugin-sdks.git
synced 2026-07-24 04:26:00 -04:00
58 lines
1.8 KiB
Python
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
|