Skip to content

Commit

Permalink
adding instructions on how to use azion token
Browse files Browse the repository at this point in the history
  • Loading branch information
PedroMiolaSilva committed Dec 11, 2024
1 parent 1cc26c2 commit cbb9ef2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -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";
Expand Down
Original file line number Diff line number Diff line change
@@ -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";
Expand Down

0 comments on commit cbb9ef2

Please sign in to comment.