feat: add ScrapeMetadataTool to MoviePilotToolFactory

- Included ScrapeMetadataTool in the tool definitions of MoviePilotToolFactory to enhance metadata scraping capabilities.
- Updated the factory.py file to reflect the addition of the new tool.
This commit is contained in:
jxxghp
2025-11-18 16:26:18 +08:00
parent 21fabf7436
commit db67080bf8
2 changed files with 120 additions and 0 deletions

View File

@@ -17,6 +17,7 @@ from app.agent.tools.impl.query_subscribe_history import QuerySubscribeHistoryTo
from app.agent.tools.impl.delete_subscribe import DeleteSubscribeTool
from app.agent.tools.impl.search_media import SearchMediaTool
from app.agent.tools.impl.recognize_media import RecognizeMediaTool
from app.agent.tools.impl.scrape_metadata import ScrapeMetadataTool
from app.agent.tools.impl.search_torrents import SearchTorrentsTool
from app.agent.tools.impl.send_message import SendMessageTool
from app.agent.tools.impl.query_schedulers import QuerySchedulersTool
@@ -46,6 +47,7 @@ class MoviePilotToolFactory:
tool_definitions = [
SearchMediaTool,
RecognizeMediaTool,
ScrapeMetadataTool,
AddSubscribeTool,
SearchTorrentsTool,
AddDownloadTool,