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

28 lines
660 B
Python
Raw Normal View History

2023-04-19 07:41:39 +00:00
from .bugtracker import bugtracker_tool
2023-04-08 04:25:48 +00:00
from .ip_whois import ip_whois_tool
from .mcv import mcv_tool
from .meme import meme_tool
2023-04-08 05:22:26 +00:00
from .random import random_choice_tool, random_number_tool, random_uuid_tool
2023-04-19 07:41:39 +00:00
from .search import search_tool
from .self_knowledge import self_knowledge_tool
2023-04-19 07:41:39 +00:00
from .server import server_tool
from .wolfram import wolfram_tool
2023-04-08 04:25:48 +00:00
tools = [
search_tool,
wolfram_tool,
ip_whois_tool,
mcv_tool,
server_tool,
2023-04-08 05:22:26 +00:00
meme_tool,
random_choice_tool,
random_number_tool,
random_uuid_tool,
2023-04-30 00:54:42 +00:00
bugtracker_tool,
self_knowledge_tool
2023-04-08 04:25:48 +00:00
]
tool_names = [tool.name for tool in tools]
__all__ = ['tools', 'tool_names']