chore: generate
This commit is contained in:
@@ -91,8 +91,7 @@ export const Info = Schema.Struct({
|
|||||||
}),
|
}),
|
||||||
timeout: Schema.optional(
|
timeout: Schema.optional(
|
||||||
Schema.Union([PositiveInt, Schema.Literal(false)]).annotate({
|
Schema.Union([PositiveInt, Schema.Literal(false)]).annotate({
|
||||||
description:
|
description: "Timeout in milliseconds for full requests to this provider. Set to false to disable timeout.",
|
||||||
"Timeout in milliseconds for full requests to this provider. Set to false to disable timeout.",
|
|
||||||
}),
|
}),
|
||||||
).annotate({
|
).annotate({
|
||||||
description: "Timeout in milliseconds for full requests to this provider. Set to false to disable timeout.",
|
description: "Timeout in milliseconds for full requests to this provider. Set to false to disable timeout.",
|
||||||
|
|||||||
@@ -17,7 +17,13 @@ afterEach(async () => {
|
|||||||
})
|
})
|
||||||
|
|
||||||
const it = testEffect(
|
const it = testEffect(
|
||||||
Layer.mergeAll(Provider.defaultLayer, Env.defaultLayer, Plugin.defaultLayer, TestLLMServer.layer, CrossSpawnSpawner.defaultLayer),
|
Layer.mergeAll(
|
||||||
|
Provider.defaultLayer,
|
||||||
|
Env.defaultLayer,
|
||||||
|
Plugin.defaultLayer,
|
||||||
|
TestLLMServer.layer,
|
||||||
|
CrossSpawnSpawner.defaultLayer,
|
||||||
|
),
|
||||||
)
|
)
|
||||||
|
|
||||||
it.live("headerTimeout does not abort delayed SSE body after headers arrive", () =>
|
it.live("headerTimeout does not abort delayed SSE body after headers arrive", () =>
|
||||||
|
|||||||
@@ -13588,7 +13588,20 @@
|
|||||||
"enum": [false]
|
"enum": [false]
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"description": "Timeout in milliseconds for requests to this provider. Default is 300000 (5 minutes). Set to false to disable timeout."
|
"description": "Timeout in milliseconds for full requests to this provider. Set to false to disable timeout."
|
||||||
|
},
|
||||||
|
"headerTimeout": {
|
||||||
|
"anyOf": [
|
||||||
|
{
|
||||||
|
"type": "integer",
|
||||||
|
"exclusiveMinimum": 0
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "boolean",
|
||||||
|
"enum": [false]
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"description": "Timeout in milliseconds to wait for response headers. Provider integrations may set defaults. Set to false to disable timeout."
|
||||||
},
|
},
|
||||||
"chunkTimeout": {
|
"chunkTimeout": {
|
||||||
"type": "integer",
|
"type": "integer",
|
||||||
|
|||||||
Reference in New Issue
Block a user