afe007ca0b
* refactor: code structure for improved readability and maintainability * style: ruff format * Update packages/astrbot/commands/provider.py Co-authored-by: sourcery-ai[bot] <58596630+sourcery-ai[bot]@users.noreply.github.com> * Update packages/astrbot/commands/persona.py Co-authored-by: sourcery-ai[bot] <58596630+sourcery-ai[bot]@users.noreply.github.com> * Update packages/astrbot/commands/llm.py Co-authored-by: sourcery-ai[bot] <58596630+sourcery-ai[bot]@users.noreply.github.com> * Update packages/astrbot/commands/conversation.py Co-authored-by: sourcery-ai[bot] <58596630+sourcery-ai[bot]@users.noreply.github.com> * fix: improve error handling message formatting in key switching * fix: update LLM command to use safe get for provider settings * feat: implement ProcessLLMRequest class for handling LLM requests and persona injection --------- Co-authored-by: sourcery-ai[bot] <58596630+sourcery-ai[bot]@users.noreply.github.com>
32 lines
1.1 KiB
Python
32 lines
1.1 KiB
Python
import astrbot.api.star as star
|
|
from astrbot.api.event import AstrMessageEvent, MessageEventResult
|
|
|
|
|
|
class ToolCommands:
|
|
def __init__(self, context: star.Context):
|
|
self.context = context
|
|
|
|
async def tool_ls(self, event: AstrMessageEvent):
|
|
"""查看函数工具列表"""
|
|
event.set_result(
|
|
MessageEventResult().message("tool 指令在 AstrBot v4.0.0 已经被移除。")
|
|
)
|
|
|
|
async def tool_on(self, event: AstrMessageEvent, tool_name: str = ""):
|
|
"""启用一个函数工具"""
|
|
event.set_result(
|
|
MessageEventResult().message("tool 指令在 AstrBot v4.0.0 已经被移除。")
|
|
)
|
|
|
|
async def tool_off(self, event: AstrMessageEvent, tool_name: str = ""):
|
|
"""停用一个函数工具"""
|
|
event.set_result(
|
|
MessageEventResult().message("tool 指令在 AstrBot v4.0.0 已经被移除。")
|
|
)
|
|
|
|
async def tool_all_off(self, event: AstrMessageEvent):
|
|
"""停用所有函数工具"""
|
|
event.set_result(
|
|
MessageEventResult().message("tool 指令在 AstrBot v4.0.0 已经被移除。")
|
|
)
|