Skip to content

Commit 40528d8

Browse files
authored
Update vector_store.ts
1 parent 398b516 commit 40528d8

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

packages-v1/langgraph-agent/src/azure/vector_store.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ import { CREDENTIAL } from "../azure/azure-credential.js";
99
import { AzureAISearchConfig } from "@langchain/community/vectorstores/azure_aisearch";
1010
import { waiter } from "./embeddings.js";
1111

12+
// <AZURE_AI_SEARCH_AUTH>
1213
const endpoint = process.env.AZURE_AISEARCH_ENDPOINT;
1314
const indexName = process.env.AZURE_AISEARCH_INDEX_NAME;
1415

@@ -61,7 +62,7 @@ export const VECTOR_STORE_QUERY_CONFIG =
6162
process.env.SET_PASSWORDLESS == "true"
6263
? VECTOR_STORE_QUERY_PASSWORDLESS
6364
: VECTOR_STORE_QUERY_KEY;
64-
65+
// </AZURE_AI_SEARCH_AUTH>
6566
// <AI_SEARCH_QUERY_FUNCTIONS>
6667
export function getReadOnlyVectorStore(): AzureAISearchVectorStore {
6768
const embeddings = getEmbeddingClient();

0 commit comments

Comments
 (0)