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";