Update mode_custom.py

pull/1122/head
雅诺狐 2025-07-21 09:33:42 +08:00 committed by GitHub
parent 610e9e5617
commit d1877089fc
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 6 additions and 5 deletions

View File

@ -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__()