From cbb9ef2c25e04df9d3c6dd74c6b1236e9d1b2468 Mon Sep 17 00:00:00 2001 From: PedroMiolaSilva Date: Wed, 11 Dec 2024 13:25:17 -0300 Subject: [PATCH] adding instructions on how to use azion token --- docs/core_docs/docs/integrations/retrievers/azion-edgesql.mdx | 2 +- docs/core_docs/docs/integrations/vectorstores/azion-edgesql.mdx | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/core_docs/docs/integrations/retrievers/azion-edgesql.mdx b/docs/core_docs/docs/integrations/retrievers/azion-edgesql.mdx index d1c993aacdd2..33bd4aa24078 100644 --- a/docs/core_docs/docs/integrations/retrievers/azion-edgesql.mdx +++ b/docs/core_docs/docs/integrations/retrievers/azion-edgesql.mdx @@ -1,6 +1,6 @@ ### Azion Edge SQL Retriever -The `AzionRetriever` is used to perform advanced search operations, including hybrid and similarity searches directly on Azion's Edge Plataform using Edge SQL. Make sure to install the `@langchain/community` package to use this retriever. Besides that, you will need an Azion account and a Token to use the Azion API. +The `AzionRetriever` is used to perform advanced search operations, including hybrid and similarity searches directly on Azion's Edge Plataform using Edge SQL. Make sure to install the `@langchain/community` package to use this retriever. Besides that, you will need an Azion account and a Token to use the Azion API, configuring it as environment variable `AZION_TOKEN`. ```typescript import { AzionRetriever } from "@langchain/community/retrievers/azion"; diff --git a/docs/core_docs/docs/integrations/vectorstores/azion-edgesql.mdx b/docs/core_docs/docs/integrations/vectorstores/azion-edgesql.mdx index b0f0d11ee1de..7d6a535ff088 100644 --- a/docs/core_docs/docs/integrations/vectorstores/azion-edgesql.mdx +++ b/docs/core_docs/docs/integrations/vectorstores/azion-edgesql.mdx @@ -1,5 +1,5 @@ ### Azion Edge SQL Vector Store -The `AzionVectorStore` is used to manage and search through a collection of documents using vector embeddings, directly on Azion's Edge Plataform using Edge SQL. Make sure to install the `@langchain/community` package to use this vector store. Besides that, you will need an Azion account and a Token to use the Azion API. +The `AzionVectorStore` is used to manage and search through a collection of documents using vector embeddings, directly on Azion's Edge Plataform using Edge SQL. Make sure to install the `@langchain/community` package to use this vector store. Besides that, you will need an Azion account and a Token to use the Azion API, configuring it as environment variable `AZION_TOKEN`. ```typescript import { AzionVectorStore } from "@langchain/community/vectorstores/azionedgesql";