{ "$schema": "https://json-structure.org/draft/2020-12/schema", "name": "ChatCompletionRequest", "type": "object", "properties": { "model": { "type": "string" }, "messages": { "type": "array" }, "max_tokens": { "type": "integer" }, "temperature": { "type": "number" }, "top_p": { "type": "number" }, "stream": { "type": "boolean" } } }