diff --git a/services/frontend/app/api/chat/stream/route.ts b/services/frontend/app/api/chat/stream/route.ts index 604ef2c0..f2140e4f 100644 --- a/services/frontend/app/api/chat/stream/route.ts +++ b/services/frontend/app/api/chat/stream/route.ts @@ -18,7 +18,8 @@ function sseEvent(data: Record) { return encoder.encode(`data: ${JSON.stringify(data)}\n\n`); } -async function proxyUpstream(body: Record, upstreamUrl: string, authHeader: string | null) { +// eslint-disable-next-line @typescript-eslint/no-explicit-any +async function proxyUpstream(body: any, upstreamUrl: string, authHeader: string | null) { const headers: Record = { 'Content-Type': 'application/json' }; if (authHeader) headers['Authorization'] = authHeader;