mirror of
https://github.com/openai/codex.git
synced 2026-04-24 14:45:27 +00:00
* Add an ability to stream stdin, stdout, and stderr * Streaming of stdout and stderr has a configurable cap for total amount of transmitted bytes (with an ability to disable it) * Add support for overriding environment variables * Add an ability to terminate running applications (using `command/exec/terminate`) * Add TTY/PTY support, with an ability to resize the terminal (using `command/exec/resize`)
26 lines
716 B
JSON
26 lines
716 B
JSON
{
|
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
"description": "Write stdin bytes to a running `command/exec` session, close stdin, or both.",
|
|
"properties": {
|
|
"closeStdin": {
|
|
"description": "Close stdin after writing `deltaBase64`, if present.",
|
|
"type": "boolean"
|
|
},
|
|
"deltaBase64": {
|
|
"description": "Optional base64-encoded stdin bytes to write.",
|
|
"type": [
|
|
"string",
|
|
"null"
|
|
]
|
|
},
|
|
"processId": {
|
|
"description": "Client-supplied, connection-scoped `processId` from the original `command/exec` request.",
|
|
"type": "string"
|
|
}
|
|
},
|
|
"required": [
|
|
"processId"
|
|
],
|
|
"title": "CommandExecWriteParams",
|
|
"type": "object"
|
|
} |