mirror of
https://github.com/openai/codex.git
synced 2026-04-24 22:54:54 +00:00
48 lines
926 B
JSON
48 lines
926 B
JSON
{
|
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
"definitions": {
|
|
"ReasoningEffort": {
|
|
"description": "See https://platform.openai.com/docs/guides/reasoning?api-mode=responses#get-started-with-reasoning",
|
|
"enum": [
|
|
"none",
|
|
"minimal",
|
|
"low",
|
|
"medium",
|
|
"high",
|
|
"xhigh"
|
|
],
|
|
"type": "string"
|
|
},
|
|
"ThreadId": {
|
|
"type": "string"
|
|
}
|
|
},
|
|
"properties": {
|
|
"conversationId": {
|
|
"$ref": "#/definitions/ThreadId"
|
|
},
|
|
"model": {
|
|
"type": "string"
|
|
},
|
|
"reasoningEffort": {
|
|
"anyOf": [
|
|
{
|
|
"$ref": "#/definitions/ReasoningEffort"
|
|
},
|
|
{
|
|
"type": "null"
|
|
}
|
|
]
|
|
},
|
|
"rolloutPath": {
|
|
"type": "string"
|
|
}
|
|
},
|
|
"required": [
|
|
"conversationId",
|
|
"model",
|
|
"rolloutPath"
|
|
],
|
|
"title": "NewConversationResponse",
|
|
"type": "object"
|
|
} |