Skip to content

Commit 12fed93

Browse files
committed
lint
1 parent d710533 commit 12fed93

3 files changed

Lines changed: 30 additions & 6 deletions

File tree

apps/docs/content/docs/en/tools/brightdata.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -161,7 +161,7 @@ Check the progress of an async Bright Data scraping job. Returns status: startin
161161

162162
### `brightdata_download_snapshot`
163163

164-
Download the results of a completed Bright Data scraping job using its snapshot ID. The snapshot must have status ready.
164+
Download the results of a completed Bright Data scraping job using its snapshot ID. The snapshot must have status
165165

166166
#### Input
167167

apps/sim/app/(landing)/integrations/data/integrations.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1779,7 +1779,7 @@
17791779
},
17801780
{
17811781
"name": "Download Snapshot",
1782-
"description": "Download the results of a completed Bright Data scraping job using its snapshot ID. The snapshot must have status ready."
1782+
"description": "Download the results of a completed Bright Data scraping job using its snapshot ID. The snapshot must have status "
17831783
},
17841784
{
17851785
"name": "Cancel Snapshot",

apps/sim/tools/brightdata/serp_search.ts

Lines changed: 28 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,34 @@ const SEARCH_ENGINE_CONFIG: Record<
88
string,
99
{ url: string; queryKey: string; numKey: string; langKey: string; countryKey: string }
1010
> = {
11-
google: { url: 'https://www.google.com/search', queryKey: 'q', numKey: 'num', langKey: 'hl', countryKey: 'gl' },
12-
bing: { url: 'https://www.bing.com/search', queryKey: 'q', numKey: 'count', langKey: 'setLang', countryKey: 'cc' },
13-
duckduckgo: { url: 'https://duckduckgo.com/', queryKey: 'q', numKey: '', langKey: 'kl', countryKey: '' },
14-
yandex: { url: 'https://yandex.com/search/', queryKey: 'text', numKey: 'numdoc', langKey: 'lang', countryKey: 'lr' },
11+
google: {
12+
url: 'https://www.google.com/search',
13+
queryKey: 'q',
14+
numKey: 'num',
15+
langKey: 'hl',
16+
countryKey: 'gl',
17+
},
18+
bing: {
19+
url: 'https://www.bing.com/search',
20+
queryKey: 'q',
21+
numKey: 'count',
22+
langKey: 'setLang',
23+
countryKey: 'cc',
24+
},
25+
duckduckgo: {
26+
url: 'https://duckduckgo.com/',
27+
queryKey: 'q',
28+
numKey: '',
29+
langKey: 'kl',
30+
countryKey: '',
31+
},
32+
yandex: {
33+
url: 'https://yandex.com/search/',
34+
queryKey: 'text',
35+
numKey: 'numdoc',
36+
langKey: 'lang',
37+
countryKey: 'lr',
38+
},
1539
} as const
1640

1741
export const brightDataSerpSearchTool: ToolConfig<

0 commit comments

Comments
 (0)