Archived
1
0
Fork 0
This repository has been archived on 2024-04-26. You can view files and clone it, but cannot push or open issues or pull requests.
akari-bot/modules/ask/tools/__init__.py
2023-07-30 16:11:23 +08:00

29 lines
691 B
Python

from .bugtracker import bugtracker_tool
from .ip_whois import ip_whois_tool
from .mcv import mcv_tool
from .meme import meme_tool
from .random import random_choice_tool, random_number_tool, random_uuid_tool
from .search import search_tool
from .self_knowledge import self_knowledge_tool
from .server import server_tool
from .wolfram import wolfram_tool
tools = [
search_tool,
ip_whois_tool,
mcv_tool,
server_tool,
meme_tool,
random_choice_tool,
random_number_tool,
random_uuid_tool,
bugtracker_tool,
self_knowledge_tool
]
if wolfram_tool:
tools.append(wolfram_tool)
tool_names = [tool.name for tool in tools]
__all__ = ['tools', 'tool_names']