diff --git a/marshoai/__plugin__.py b/marshoai/__plugin__.py index 4708881..c961cf4 100644 --- a/marshoai/__plugin__.py +++ b/marshoai/__plugin__.py @@ -45,7 +45,7 @@ async def reset(event: Union[GroupMessageEvent, PrivateMessageEvent]): context.reset(event.group_id, event.is_private) except AttributeError: context.reset(event.user_id, event.is_private) - await send_text("上下文已重置") + await send_text("上下文已重置") @on_start_match("marsho") diff --git a/marshoai/constants.py b/marshoai/constants.py index 55076ab..9afc5ee 100644 --- a/marshoai/constants.py +++ b/marshoai/constants.py @@ -6,6 +6,8 @@ USAGE: str = f"""MarshoAI-Melobot Beta v{__version__} by Asankilp reset : 重置当前会话的上下文。 超级用户命令(均需要加上命令前缀使用): /changemodel <模型名> : 切换全局 AI 模型。 + /contexts : 返回当前会话的上下文列表。 ※当上下文包含图片时,不要使用此命令。 + ※本AI的回答"按原样"提供,不提供任何担保。AI也会犯错,请仔细甄别回答的准确性。""" SUPPORT_IMAGE_MODELS: list = ["gpt-4o","gpt-4o-mini","llama-3.2-90b-vision-instruct","llama-3.2-11b-vision-instruct"]