{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/ChatCompletionLogProb", "title": "ChatCompletionLogProb", "additionalProperties": false, "properties": { "token": { "title": "Token", "type": "string", "description": "The token string." }, "logprob": { "default": -9999, "title": "Logprob", "type": "number", "description": "The log probability of the token." }, "bytes": { "default": null, "title": "Bytes", "description": "The UTF-8 byte representation of the token.", "items": { "type": "integer" }, "type": "array" } }, "required": [ "token" ], "type": "object", "description": "Log probability information for a token." }