adding the proper imports into __init__.py files, and fixing the folder name

This commit is contained in:
Carlos Antunes
2024-07-15 13:00:06 -03:00
parent a11cc57345
commit 21342fa0f6
4 changed files with 3 additions and 1 deletions

View File

@@ -23,4 +23,5 @@ from .tools import (
XMLSearchTool,
YoutubeChannelSearchTool,
YoutubeVideoSearchTool,
)
MySQLSearchTool
)

View File

@@ -21,3 +21,4 @@ from .website_search.website_search_tool import WebsiteSearchTool
from .xml_search_tool.xml_search_tool import XMLSearchTool
from .youtube_channel_search_tool.youtube_channel_search_tool import YoutubeChannelSearchTool
from .youtube_video_search_tool.youtube_video_search_tool import YoutubeVideoSearchTool
from .mysql_search_tool.mysql_search_tool import MySQLSearchTool