not implemented
This commit is contained in:
@@ -1,22 +1,23 @@
|
|||||||
from .willing_manager import BaseWillingManager
|
from .willing_manager import BaseWillingManager
|
||||||
|
|
||||||
text = "你丫的不配置你选什么custom模式,给你退了快点给你麦爹配置\n注:以上内容由gemini生成,如有不满请投诉gemini"
|
NOT_IMPLEMENTED_MESSAGE = "\ncustom模式你实现了吗?没自行实现不要选custom。给你退了快点给你麦爹配置\n注:以上内容由gemini生成,如有不满请投诉gemini"
|
||||||
|
|
||||||
class CustomWillingManager(BaseWillingManager):
|
class CustomWillingManager(BaseWillingManager):
|
||||||
async def async_task_starter(self) -> None:
|
async def async_task_starter(self) -> None:
|
||||||
raise NotImplementedError(text)
|
raise NotImplementedError(NOT_IMPLEMENTED_MESSAGE)
|
||||||
|
|
||||||
async def before_generate_reply_handle(self, message_id: str):
|
async def before_generate_reply_handle(self, message_id: str):
|
||||||
raise NotImplementedError(text)
|
raise NotImplementedError(NOT_IMPLEMENTED_MESSAGE)
|
||||||
|
|
||||||
async def after_generate_reply_handle(self, message_id: str):
|
async def after_generate_reply_handle(self, message_id: str):
|
||||||
raise NotImplementedError(text)
|
raise NotImplementedError(NOT_IMPLEMENTED_MESSAGE)
|
||||||
|
|
||||||
async def not_reply_handle(self, message_id: str):
|
async def not_reply_handle(self, message_id: str):
|
||||||
raise NotImplementedError(text)
|
raise NotImplementedError(NOT_IMPLEMENTED_MESSAGE)
|
||||||
|
|
||||||
async def get_reply_probability(self, message_id: str):
|
async def get_reply_probability(self, message_id: str):
|
||||||
raise NotImplementedError(text)
|
raise NotImplementedError(NOT_IMPLEMENTED_MESSAGE)
|
||||||
|
|
||||||
def __init__(self):
|
def __init__(self):
|
||||||
super().__init__()
|
super().__init__()
|
||||||
|
raise NotImplementedError(NOT_IMPLEMENTED_MESSAGE)
|
||||||
|
|||||||
Reference in New Issue
Block a user