Skip to content

Vector Store Azure Ai Search

Node: vectorStoreAzureAISearch · Full type: @n8n/n8n-nodes-langchain.vectorStoreAzureAISearch · Version: 1.3

Credentials

azureAiSearchApi (alias: @azure)

CREDENTIAL @azure = azureAiSearchApi "My Vector Store Azure Ai Search"

Parameters

Parameter Type Default Details
mode options "retrieve" load, insert, retrieve, retrieve-as-tool, update
toolName string "" required
toolDescription string "" required
indexName string "n8n-vectorstore" required
embeddingBatchSize number 200
options collection {} keys: clearIndex, metadataKeysToInsert
prompt string "" required
topK number 4
includeDocumentMetadata boolean true
useReranker boolean false
id string "" required

options children:

Parameter Type Default Details
clearIndex boolean false
metadataKeysToInsert string ""

Example

NODE "vectorStoreAzureAISearch" @azure AS "Vector Store Azure Ai Search" {
  toolName: {{ $json.toolName }},
  toolDescription: {{ $json.toolDescription }},
  indexName: {{ $json.indexName }},
  prompt: {{ $json.prompt }},
  id: {{ $json.id }}
}