We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a6f23cb commit d69962bCopy full SHA for d69962b
1 file changed
packages/opencode/src/provider/provider.ts
@@ -47,8 +47,6 @@ import { ProviderTransform } from "./transform"
47
import { Installation } from "../installation"
48
import { ModelID, ProviderID } from "./schema"
49
50
-const DEFAULT_CHUNK_TIMEOUT = 300_000
51
-
52
export namespace Provider {
53
const log = Log.create({ service: "provider" })
54
@@ -1130,7 +1128,7 @@ export namespace Provider {
1130
1128
if (existing) return existing
1131
1129
1132
const customFetch = options["fetch"]
1133
- const chunkTimeout = options["chunkTimeout"] || DEFAULT_CHUNK_TIMEOUT
+ const chunkTimeout = options["chunkTimeout"]
1134
delete options["chunkTimeout"]
1135
1136
options["fetch"] = async (input: any, init?: BunFetchRequestInit) => {
0 commit comments