mirror of
https://github.com/openai/codex.git
synced 2026-04-26 15:45:02 +00:00
Expose app-server environment register/list RPCs, persist environment selection through thread lifecycle flows, and cover the new routing behavior with app-server tests. Co-authored-by: Codex <noreply@openai.com>
32 lines
570 B
JSON
32 lines
570 B
JSON
{
|
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
"definitions": {
|
|
"EnvironmentInfo": {
|
|
"properties": {
|
|
"execServerUrl": {
|
|
"type": [
|
|
"string",
|
|
"null"
|
|
]
|
|
},
|
|
"id": {
|
|
"type": "string"
|
|
}
|
|
},
|
|
"required": [
|
|
"id"
|
|
],
|
|
"type": "object"
|
|
}
|
|
},
|
|
"properties": {
|
|
"environment": {
|
|
"$ref": "#/definitions/EnvironmentInfo"
|
|
}
|
|
},
|
|
"required": [
|
|
"environment"
|
|
],
|
|
"title": "EnvironmentRegisterResponse",
|
|
"type": "object"
|
|
} |