diff --git a/surfsense_backend/app/agents/chat/multi_agent_chat/subagents/builtins/scraping/tools/index.py b/surfsense_backend/app/agents/chat/multi_agent_chat/subagents/builtins/scraping/tools/index.py index 8416b8b05..43923dbb9 100644 --- a/surfsense_backend/app/agents/chat/multi_agent_chat/subagents/builtins/scraping/tools/index.py +++ b/surfsense_backend/app/agents/chat/multi_agent_chat/subagents/builtins/scraping/tools/index.py @@ -10,6 +10,8 @@ from app.agents.chat.multi_agent_chat.shared.permissions import Ruleset from app.capabilities.core.access.agent import build_capability_tools from app.capabilities.web.discover.definition import WEB_DISCOVER from app.capabilities.web.scrape.definition import WEB_SCRAPE +from app.capabilities.youtube.comments.definition import YOUTUBE_COMMENTS +from app.capabilities.youtube.scrape.definition import YOUTUBE_SCRAPE from .refresh_watch import create_refresh_watch_tool from .start_watch import create_start_watch_tool @@ -19,7 +21,7 @@ NAME = "scraping" RULESET = Ruleset(origin=NAME, rules=[]) -_CI_VERBS = [WEB_DISCOVER, WEB_SCRAPE] +_CI_VERBS = [WEB_DISCOVER, WEB_SCRAPE, YOUTUBE_SCRAPE, YOUTUBE_COMMENTS] def load_tools(