{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/ModifyAssistantRequest", "title": "ModifyAssistantRequest", "type": "object", "properties": { "model": { "type": "string" }, "name": { "type": "string", "nullable": true }, "description": { "type": "string", "nullable": true }, "instructions": { "type": "string", "nullable": true }, "tools": { "type": "array", "items": { "type": "object" } }, "metadata": { "type": "object" }, "temperature": { "type": "number" }, "top_p": { "type": "number" }, "response_format": { "oneOf": [ { "type": "string" }, { "type": "object" } ] } } }