OpenAI APIs · Schema

ModifyAssistantRequest

Artificial IntelligenceEmbeddingsImage GenerationLanguage ModelsSpeech

Properties

Name Type Description
model string
name string
description string
instructions string
tools array
metadata object
temperature number
top_p number
response_format object
View JSON Schema on GitHub

JSON Schema

openai-apis-modifyassistantrequest-schema.json Raw ↑
{
  "$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"
        }
      ]
    }
  }
}