mirror of
https://github.com/openai/codex.git
synced 2026-04-28 02:11:08 +03:00
28 lines
753 B
JSON
28 lines
753 B
JSON
{
|
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
"properties": {
|
|
"codexHome": {
|
|
"description": "Absolute path to the server's Codex home directory.",
|
|
"type": "string"
|
|
},
|
|
"platformFamily": {
|
|
"description": "Platform family for the running app-server target, for example `\"unix\"` or `\"windows\"`.",
|
|
"type": "string"
|
|
},
|
|
"platformOs": {
|
|
"description": "Operating system for the running app-server target, for example `\"macos\"`, `\"linux\"`, or `\"windows\"`.",
|
|
"type": "string"
|
|
},
|
|
"userAgent": {
|
|
"type": "string"
|
|
}
|
|
},
|
|
"required": [
|
|
"codexHome",
|
|
"platformFamily",
|
|
"platformOs",
|
|
"userAgent"
|
|
],
|
|
"title": "InitializeResponse",
|
|
"type": "object"
|
|
} |