mirror of
https://github.com/openai/codex.git
synced 2026-04-24 14:45:27 +00:00
This allows the client to pick os-specific behavior while interacting with the app server, e.g. to use proper path separators.
23 lines
611 B
JSON
23 lines
611 B
JSON
{
|
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
"properties": {
|
|
"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": [
|
|
"platformFamily",
|
|
"platformOs",
|
|
"userAgent"
|
|
],
|
|
"title": "InitializeResponse",
|
|
"type": "object"
|
|
} |