Skip to content
Merged
Changes from 1 commit
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
Prev Previous commit
fix(brightdata): disable incompatible DuckDuckGo and Yandex URL params
DuckDuckGo kl expects region-language format (us-en) and Yandex lr
expects numeric region IDs (213), not plain two-letter codes. Disable
these URL-level params since Bright Data normalizes localization through
the body-level country param.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
  • Loading branch information
waleedlatif1 and claude committed Apr 15, 2026
commit eb50282b4b55dca2a0c1bc10a60c6a1b5656a481
4 changes: 2 additions & 2 deletions apps/sim/tools/brightdata/serp_search.ts
Original file line number Diff line number Diff line change
Expand Up @@ -26,15 +26,15 @@ const SEARCH_ENGINE_CONFIG: Record<
url: 'https://duckduckgo.com/',
queryKey: 'q',
numKey: '',
langKey: 'kl',
langKey: '',
countryKey: '',
},
yandex: {
url: 'https://yandex.com/search/',
queryKey: 'text',
numKey: 'numdoc',
langKey: 'lang',
countryKey: 'lr',
countryKey: '',
},
} as const

Expand Down
Loading