mirror of
https://github.com/openai/codex.git
synced 2026-04-24 06:35:50 +00:00
54 lines
931 B
JSON
54 lines
931 B
JSON
{
|
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
"definitions": {
|
|
"ModelRequestError": {
|
|
"properties": {
|
|
"code": {
|
|
"type": [
|
|
"string",
|
|
"null"
|
|
]
|
|
},
|
|
"message": {
|
|
"type": "string"
|
|
},
|
|
"param": {
|
|
"type": [
|
|
"string",
|
|
"null"
|
|
]
|
|
},
|
|
"type": {
|
|
"type": "string"
|
|
}
|
|
},
|
|
"required": [
|
|
"message",
|
|
"type"
|
|
],
|
|
"type": "object"
|
|
}
|
|
},
|
|
"properties": {
|
|
"error": {
|
|
"$ref": "#/definitions/ModelRequestError"
|
|
},
|
|
"requestId": {
|
|
"type": "string"
|
|
},
|
|
"threadId": {
|
|
"type": "string"
|
|
},
|
|
"turnId": {
|
|
"type": "string"
|
|
}
|
|
},
|
|
"required": [
|
|
"error",
|
|
"requestId",
|
|
"threadId",
|
|
"turnId"
|
|
],
|
|
"title": "ModelRequestFailedNotification",
|
|
"type": "object"
|
|
} |