From a0ca9ce2dfb90219f4afdd68bcef6fe5076fa51b Mon Sep 17 00:00:00 2001 From: Aaron Ji Date: Wed, 2 Apr 2025 13:26:48 +0800 Subject: [PATCH] chore: enable fallback by default for s.jina.ai --- src/api/searcher-serper.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/api/searcher-serper.ts b/src/api/searcher-serper.ts index fade223..24f2782 100644 --- a/src/api/searcher-serper.ts +++ b/src/api/searcher-serper.ts @@ -112,7 +112,7 @@ export class SearcherHost extends RPCHost { @Param('hl', { validate: (v: string) => WORLD_LANGUAGES.some(l => l.code === v) }) hl?: string, @Param('location') location?: string, @Param('page') page?: number, - @Param('fallback', { type: Boolean, default: false }) fallback?: boolean, + @Param('fallback', { type: Boolean, default: true }) fallback?: boolean, @Param('q') q?: string, ) { // We want to make our search API follow SERP schema, so we need to expose 'num' parameter.