Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions assets/Tools.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,7 @@
|web_data_youtube_profiles|Quickly read structured YouTube channel profile data. Requires a valid YouTube channel URL. Often faster and more reliable than scraping.|
|web_data_youtube_comments|Quickly read structured YouTube comments data. Requires a valid YouTube video URL and optional num_of_comments (default 10). Often faster and more reliable than scraping.|
|web_data_reddit_posts|Quickly read structured Reddit post data. Requires a valid Reddit post URL. Often faster and more reliable than scraping.|
|web_data_reddit_comments|Quickly read structured Reddit comments data. Requires a valid Reddit post or comment thread URL. Accepts an optional days_back parameter to limit results to comments posted within the last N days. Often faster and more reliable than scraping.|
|web_data_youtube_videos|Quickly read structured YouTube video metadata. Requires a valid YouTube video URL. Often faster and more reliable than scraping.|
|web_data_npm_package|Quickly read structured npm package data including latest version, README, dependencies, and metadata. Requires a valid npm package name (e.g., @brightdata/sdk). Your coding agent's go-to tool for package lookups.|
|web_data_pypi_package|Quickly read structured PyPI package data including latest version, README, dependencies, and metadata. Requires a valid PyPI package name (e.g., langchain-brightdata). Your coding agent's go-to tool for Python package lookups.|
Expand Down
12 changes: 12 additions & 0 deletions server.js
Original file line number Diff line number Diff line change
Expand Up @@ -1115,6 +1115,18 @@ const datasets = [{
].join('\n'),
inputs: ['url'],
},
{
id: 'reddit_comments',
dataset_id: 'gd_lvzdpsdlw09j6t702',
description: [
'Quickly read structured Reddit comments data.',
'Requires a valid Reddit post or comment thread URL.',
'Optionally filter by recency using days_back (number of days).',
'This can be a cache lookup, so it can be more reliable than scraping',
].join('\n'),
inputs: ['url', 'days_back'],
defaults: {days_back: ''},
},
{
id: 'youtube_videos',
dataset_id: 'gd_lk56epmy2i5g7lzu0k',
Expand Down
1 change: 1 addition & 0 deletions tool_groups.js
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,7 @@ export const GROUPS = {
'web_data_youtube_comments',
'web_data_youtube_videos',
'web_data_reddit_posts',
'web_data_reddit_comments',
],
},
BROWSER: {
Expand Down
Loading