Microsoft Azure · Schema

pineconeChatExtensionParameters

Parameters for configuring Azure OpenAI Pinecone chat extensions.

API ManagementCloudCloud ComputingEnterpriseInfrastructure as a ServicePlatform as a ServiceT1

Properties

Name Type Description
authentication object
top_n_documents integer The configured top number of documents to feature for the configured query.
in_scope boolean Whether queries should be restricted to use of indexed data.
strictness integer The configured strictness of the search relevance filtering. The higher of strictness, the higher of the precision but lower recall of the answer.
role_information string Give the model instructions about how it should behave and any context it should reference when generating a response. You can describe the assistant's personality and tell it how to format responses.
environment string The environment name of Pinecone.
index_name string The name of the Pinecone database index.
fields_mapping object
embedding_dependency object
View JSON Schema on GitHub

JSON Schema

microsoft-azure-pineconechatextensionparameters-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/pineconeChatExtensionParameters",
  "title": "pineconeChatExtensionParameters",
  "required": [
    "authentication",
    "embedding_dependency",
    "environment",
    "fields_mapping",
    "index_name"
  ],
  "type": "object",
  "properties": {
    "authentication": {
      "$ref": "#/components/schemas/onYourDataApiKeyAuthenticationOptions"
    },
    "top_n_documents": {
      "type": "integer",
      "description": "The configured top number of documents to feature for the configured query.",
      "format": "int32"
    },
    "in_scope": {
      "type": "boolean",
      "description": "Whether queries should be restricted to use of indexed data."
    },
    "strictness": {
      "maximum": 5,
      "minimum": 1,
      "type": "integer",
      "description": "The configured strictness of the search relevance filtering. The higher of strictness, the higher of the precision but lower recall of the answer.",
      "format": "int32"
    },
    "role_information": {
      "type": "string",
      "description": "Give the model instructions about how it should behave and any context it should reference when generating a response. You can describe the assistant's personality and tell it how to format responses. There's a 100 token limit for it, and it counts against the overall token limit."
    },
    "environment": {
      "type": "string",
      "description": "The environment name of Pinecone."
    },
    "index_name": {
      "type": "string",
      "description": "The name of the Pinecone database index."
    },
    "fields_mapping": {
      "$ref": "#/components/schemas/pineconeFieldMappingOptions"
    },
    "embedding_dependency": {
      "$ref": "#/components/schemas/onYourDataDeploymentNameVectorizationSource"
    }
  },
  "description": "Parameters for configuring Azure OpenAI Pinecone chat extensions."
}