Skip to content

Commit 9da2c8f

Browse files
committed
Add missing header param
Found while looking into #3179, although it won't contribute to fixing it
1 parent bdcfaa9 commit 9da2c8f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/api/providers/base-openai-compatible-provider.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ export abstract class BaseOpenAiCompatibleProvider<ModelName extends string>
7070
defaultHeaders: DEFAULT_HEADERS,
7171
// kilocode_change start
7272
timeout: timeout,
73-
fetch: fetchWithTimeout(timeout),
73+
fetch: fetchWithTimeout(timeout, DEFAULT_HEADERS),
7474
// kilocode_change end
7575
})
7676
}

0 commit comments

Comments
 (0)