|
|
@@ -422,14 +422,14 @@ export namespace Provider {
|
|
|
const modPath =
|
|
|
provider.id === "google-vertex-anthropic" ? `${installedPath}/dist/anthropic/index.mjs` : installedPath
|
|
|
const mod = await import(modPath)
|
|
|
- if (options["timeout"] !== undefined) {
|
|
|
+ if (options["timeout"] !== undefined && options["timeout"] !== null) {
|
|
|
// Only override fetch if user explicitly sets timeout
|
|
|
options["fetch"] = async (input: any, init?: BunFetchRequestInit) => {
|
|
|
const { signal, ...rest } = init ?? {}
|
|
|
|
|
|
const signals: AbortSignal[] = []
|
|
|
if (signal) signals.push(signal)
|
|
|
- signals.push(AbortSignal.timeout(options["timeout"]))
|
|
|
+ if (options["timeout"] !== false) signals.push(AbortSignal.timeout(options["timeout"]))
|
|
|
|
|
|
const combined = signals.length > 1 ? AbortSignal.any(signals) : signals[0]
|
|
|
|