Pinecone · Schema

StreamChatCompletionChunkModel

Describes the response format of a chat request.

Vector DatabasesAIEmbeddingsRAG

Properties

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

JSON Schema

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