Pinecone · Schema

CitationModel

Describes a single cited source returned by a chat request.

Vector DatabasesAIEmbeddingsRAG

Properties

Name Type Description
position integer The index position of the citation in the complete text response.
references array
View JSON Schema on GitHub

JSON Schema

pinecone-citationmodel-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CitationModel",
  "title": "CitationModel",
  "description": "Describes a single cited source returned by a chat request.",
  "type": "object",
  "properties": {
    "position": {
      "description": "The index position of the citation in the complete text response.",
      "type": "integer"
    },
    "references": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/ReferenceModel"
      }
    }
  }
}