Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
50 changes: 50 additions & 0 deletions .speakeasy/in.openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9551,6 +9551,46 @@ components:
- 'url'
- 'title'
type: 'object'
GatewayTimeoutResponse:
description: 'Gateway Timeout - Provider did not respond before the upstream deadline'
example:
error:
code: 504
message: 'The operation was aborted due to timeout'
properties:
error:
$ref: '#/components/schemas/GatewayTimeoutResponseErrorData'
openrouter_metadata:
additionalProperties: {}
type:
- 'object'
- 'null'
user_id:
type:
- 'string'
- 'null'
required:
- 'error'
type: 'object'
GatewayTimeoutResponseErrorData:
description: 'Error data for GatewayTimeoutResponse'
example:
code: 504
message: 'The operation was aborted due to timeout'
properties:
code:
type: 'integer'
message:
type: 'string'
metadata:
additionalProperties: {}
type:
- 'object'
- 'null'
required:
- 'code'
- 'message'
type: 'object'
GenerationContentData:
description: 'Stored prompt and completion content, plus the failure error when one was stored'
example:
Expand Down Expand Up @@ -29024,6 +29064,16 @@ paths:
schema:
$ref: '#/components/schemas/ServiceUnavailableResponse'
description: 'Service Unavailable - Service temporarily unavailable'
'504':
content:
application/json:
example:
error:
code: 504
message: 'The operation was aborted due to timeout'
schema:
$ref: '#/components/schemas/GatewayTimeoutResponse'
description: 'Gateway Timeout - Provider did not respond before the upstream deadline'
'524':
content:
application/json:
Expand Down
Loading