From d1877089fcbf2ad8e08f6e594bfda28c62d27742 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=9B=85=E8=AF=BA=E7=8B=90?= <212194964+foxcyber907@users.noreply.github.com> Date: Mon, 21 Jul 2025 09:33:42 +0800 Subject: [PATCH] Update mode_custom.py --- src/chat/willing/mode_custom.py | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/src/chat/willing/mode_custom.py b/src/chat/willing/mode_custom.py index 36334df43..01a85acb4 100644 --- a/src/chat/willing/mode_custom.py +++ b/src/chat/willing/mode_custom.py @@ -1,21 +1,22 @@ from .willing_manager import BaseWillingManager +text = "你丫的不配置你选什么custom模式,给你退了快点给你麦爹配置\n注:以上内容由gemini生成,如有不满请投诉gemini" class CustomWillingManager(BaseWillingManager): async def async_task_starter(self) -> None: - pass + raise NotImplementedError(text) async def before_generate_reply_handle(self, message_id: str): - pass + raise NotImplementedError(text) async def after_generate_reply_handle(self, message_id: str): - pass + raise NotImplementedError(text) async def not_reply_handle(self, message_id: str): - pass + raise NotImplementedError(text) async def get_reply_probability(self, message_id: str): - pass + raise NotImplementedError(text) def __init__(self): super().__init__()