|
|
@@ -1225,7 +1225,11 @@ export type ProviderConfig = {
|
|
|
* Timeout in milliseconds for requests to this provider. Default is 300000 (5 minutes). Set to false to disable timeout.
|
|
|
*/
|
|
|
timeout?: number | false
|
|
|
- [key: string]: unknown | string | boolean | number | false | undefined
|
|
|
+ /**
|
|
|
+ * Timeout in milliseconds between streamed SSE chunks for this provider. If no chunk arrives within this window, the request is aborted.
|
|
|
+ */
|
|
|
+ chunkTimeout?: number
|
|
|
+ [key: string]: unknown | string | boolean | number | false | number | undefined
|
|
|
}
|
|
|
}
|
|
|
|