mirror of
https://github.com/openai/codex.git
synced 2026-04-28 18:32:04 +03:00
Add the v2 app-server protocol and implementation for filesystem reads, writes, directory operations, metadata, copying, and removal. This also updates the schema fixtures, app-server documentation, and the v2 integration coverage for the filesystem API surface.
15 lines
354 B
JSON
15 lines
354 B
JSON
{
|
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
"description": "Base64-encoded file contents returned by `fs/readFile`.",
|
|
"properties": {
|
|
"dataBase64": {
|
|
"description": "File contents encoded as base64.",
|
|
"type": "string"
|
|
}
|
|
},
|
|
"required": [
|
|
"dataBase64"
|
|
],
|
|
"title": "FsReadFileResponse",
|
|
"type": "object"
|
|
} |