mirror of
https://github.com/openai/codex.git
synced 2026-09-13 11:47:17 +00:00
29 lines
634 B
JSON
Generated
29 lines
634 B
JSON
Generated
{
|
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
"description": "Read a bounded chunk from an open file at an absolute byte offset.",
|
|
"properties": {
|
|
"handleId": {
|
|
"type": "string"
|
|
},
|
|
"maxBytes": {
|
|
"description": "Requested upper bound. Values above `maxChunkBytes` are capped.",
|
|
"format": "uint32",
|
|
"minimum": 0.0,
|
|
"type": [
|
|
"integer",
|
|
"null"
|
|
]
|
|
},
|
|
"offset": {
|
|
"format": "uint64",
|
|
"minimum": 0.0,
|
|
"type": "integer"
|
|
}
|
|
},
|
|
"required": [
|
|
"handleId",
|
|
"offset"
|
|
],
|
|
"title": "FsReadFileReadParams",
|
|
"type": "object"
|
|
} |