Pinecone · Schema

ModelInfoList

The list of available models.

Vector DatabasesAIEmbeddingsRAG

Properties

Name Type Description
models array List of available models.
View JSON Schema on GitHub

JSON Schema

pinecone-modelinfolist-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ModelInfoList",
  "title": "ModelInfoList",
  "description": "The list of available models.",
  "type": "object",
  "properties": {
    "models": {
      "description": "List of available models.",
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/ModelInfo"
      }
    }
  }
}