Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion tutorial/build_index.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
print(f"Data directory '{data_directory}' does not exist.")
exit()

index_name = "tutorial-index" # your desired index name
index_name = os.getenv("AZUREAI_SEARCH_INDEX_NAME", "tutorial-index"); # your desired index name
index_path = build_index(
name=index_name, # name of your index
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"
Expand Down
4 changes: 2 additions & 2 deletions tutorial/copilot_flow/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
openai
azure-identity
azure-search-documents==11.4.0
promptflow[azure]==1.11.0
promptflow-tracing==1.11.0
promptflow[azure]==1.15.0
promptflow-tracing==1.15.0
promptflow-tools==1.4.0
promptflow-evals==0.3.0
jinja2
Expand Down