feat(routing): wire interceptFetch tool interception into the chat pipeline (#7339) (#7736)

Phases 3-4 of #3384 (Phases 1-2 shipped DB schema + resolveInterceptSearch in
release/v3.8.47). Adds resolveInterceptFetch(provider, model) as a structural
twin of resolveInterceptSearch, and open-sse/services/webFetchInterception.ts
(mirroring webSearchFallback.ts) to rewrite a provider-native web_fetch tool
declaration into a synthetic omniroute_web_fetch function tool. The synthetic
tool call is dispatched through the existing handleToolCallExecution path
(same as omniroute_web_search) to a new web_fetch builtin skill handler that
resolves credentials and calls handleWebFetch() against /v1/web/fetch.

Strictly opt-in: with no interceptFetch DB row configured (the default), the
outgoing request body is byte-identical to pre-change behavior — no heuristic
default bypass like the interceptSearch sibling, to guarantee zero overhead
when disabled (Hard Rule #20).

Also ships the dashboard toggle (owner decision, overriding the plan's
backend-only recommendation): ProviderInterceptionSection.tsx on the provider
detail page, backed by GET/PUT/DELETE /api/providers/[id]/interception-rules,
covering both interceptSearch and interceptFetch from one control.

chatCore.ts touch is minimal (frozen file): one resolver call + one
prepareWebFetchFallbackBody call mirroring the existing interceptSearch block,
plus threading provider/model into the existing handleToolCallExecution call.
This commit is contained in:
Diego Rodrigues de Sa e Souza
2026-07-19 14:37:30 -03:00
committed by GitHub
parent a2004060c5
commit a95da4a902
18 changed files with 1182 additions and 3 deletions

View File

@@ -517,6 +517,25 @@ export const updateParamFilterConfigSchema = z.object({
autoLearn: z.boolean().optional(),
});
// PUT /api/providers/[id]/interception-rules — upsert provider/model web
// search/fetch interception rules (#3384/#7339)
const fetchInterceptionBackendSchema = z.enum(["firecrawl", "jina", "tavily"]);
const modelInterceptionRuleSchema = z.object({
interceptSearch: z.boolean().optional(),
interceptFetch: z.boolean().optional(),
fetchBackend: fetchInterceptionBackendSchema.optional(),
fetchProxyUrl: z.string().trim().url().max(2000).optional(),
});
export const updateInterceptionRulesSchema = z.object({
interceptSearch: z.boolean().optional(),
interceptFetch: z.boolean().optional(),
fetchBackend: fetchInterceptionBackendSchema.optional(),
fetchProxyUrl: z.string().trim().url().max(2000).optional(),
models: z.record(z.string().trim().min(1).max(200), modelInterceptionRuleSchema).optional(),
});
export const validateProviderApiKeySchema = z
.object({
provider: z.string().trim().min(1, "Provider and API key required"),