Pinecone · Schema

ChatCompletionModel

Describes the response format of a chat request.

Vector DatabasesAIEmbeddingsRAG

Properties

Name Type Description
id string
choices array
model string
usage object
View JSON Schema on GitHub

JSON Schema

pinecone-chatcompletionmodel-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ChatCompletionModel",
  "title": "ChatCompletionModel",
  "description": "Describes the response format of a chat request.",
  "type": "object",
  "properties": {
    "id": {
      "type": "string"
    },
    "choices": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/ChoiceModel"
      }
    },
    "model": {
      "type": "string"
    },
    "usage": {
      "$ref": "#/components/schemas/UsageModel"
    }
  }
}