mirror of
https://github.com/MODSetter/SurfSense.git
synced 2026-07-08 22:22:17 +02:00
feat(scraping-agent): wire youtube verbs into subagent tools
This commit is contained in:
parent
0b2dba7a57
commit
c467a99dc6
1 changed files with 3 additions and 1 deletions
|
|
@ -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(
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue