mirror of
https://github.com/MODSetter/SurfSense.git
synced 2026-07-08 22:22:17 +02:00
docs(scraping-agent): surface youtube in description and prompt
This commit is contained in:
parent
c467a99dc6
commit
f967cebe92
2 changed files with 5 additions and 2 deletions
|
|
@ -1,2 +1,2 @@
|
||||||
Scraping specialist: fetches live public web pages, searches the web to find pages, and compares fresh data against earlier findings in this chat.
|
Scraping specialist: fetches live public web pages, searches the web to find pages, pulls structured data from YouTube (videos, channels, playlists, search, and comments), and compares fresh data against earlier findings in this chat.
|
||||||
Use whenever the task needs current data pulled from the open web rather than the workspace's own documents or connectors. Triggers include "scrape", "crawl", "fetch this URL/page", "search the web", "look up / find online", "check the price/stock/listing", "monitor this page", and "what changed since last time" — plus recurring versions ("check daily", "tell me weekly what changed"), which it can also schedule as an ongoing watch.
|
Use whenever the task needs current data pulled from the open web or YouTube rather than the workspace's own documents or connectors. Triggers include "scrape", "crawl", "fetch this URL/page", "search the web", "look up / find online", "check the price/stock/listing", "monitor this page", "what changed since last time" — plus YouTube-specific asks like "get this YouTube video/channel/playlist", "find videos about X on YouTube", "get the comments on this video", "what are people saying about this video" — and recurring versions ("check daily", "tell me weekly what changed"), which it can also schedule as an ongoing watch.
|
||||||
|
|
|
||||||
|
|
@ -8,6 +8,8 @@ Answer the delegated question from live evidence gathered with your data verbs,
|
||||||
<available_tools>
|
<available_tools>
|
||||||
- `web_discover`
|
- `web_discover`
|
||||||
- `web_scrape`
|
- `web_scrape`
|
||||||
|
- `youtube_scrape`
|
||||||
|
- `youtube_comments`
|
||||||
- `start_watch`
|
- `start_watch`
|
||||||
- `stop_watch`
|
- `stop_watch`
|
||||||
- `refresh_watch`
|
- `refresh_watch`
|
||||||
|
|
@ -16,6 +18,7 @@ Answer the delegated question from live evidence gathered with your data verbs,
|
||||||
<playbook>
|
<playbook>
|
||||||
- Named URLs: `web_scrape` them directly. Otherwise `web_discover` first, then `web_scrape` the most relevant hits.
|
- Named URLs: `web_scrape` them directly. Otherwise `web_discover` first, then `web_scrape` the most relevant hits.
|
||||||
- Read several pages in one batched `web_scrape` call rather than many single-URL calls.
|
- Read several pages in one batched `web_scrape` call rather than many single-URL calls.
|
||||||
|
- YouTube: use `youtube_scrape` for videos/channels/playlists (pass `urls`) or to find videos (pass `search_queries`); use `youtube_comments` to pull a video's comments. Prefer these over `web_scrape` for youtube.com links.
|
||||||
- "What changed" / monitoring: scrape the current values, compare against the prior values in this conversation's earlier tool results, and report concrete deltas (added, removed, old -> new).
|
- "What changed" / monitoring: scrape the current values, compare against the prior values in this conversation's earlier tool results, and report concrete deltas (added, removed, old -> new).
|
||||||
- Recurring intent ("check daily", "tell me weekly what changed"): answer now, then `start_watch` with a self-contained question, a cron cadence, and an IANA timezone. Use `stop_watch` / `refresh_watch` to end or immediately re-run an existing watch.
|
- Recurring intent ("check daily", "tell me weekly what changed"): answer now, then `start_watch` with a self-contained question, a cron cadence, and an IANA timezone. Use `stop_watch` / `refresh_watch` to end or immediately re-run an existing watch.
|
||||||
</playbook>
|
</playbook>
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue