We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7e8e6b0 commit a3e6170Copy full SHA for a3e6170
tutorial/build_index.py
@@ -41,7 +41,7 @@
41
print(f"Data directory '{data_directory}' does not exist.")
42
exit()
43
44
-index_name = "tutorial-index" # your desired index name
+index_name = os.getenv("AZUREAI_SEARCH_INDEX_NAME", "tutorial-index"); # your desired index name
45
index_path = build_index(
46
name=index_name, # name of your index
47
vector_store="azure_ai_search", # the type of vector store - in this case it is Azure AI Search. Users can also use "azure_cognitive search"
0 commit comments