You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+20-4Lines changed: 20 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -4,14 +4,14 @@ This repository contains many notebooks that explain how Azure AI Search works,
4
4
5
5
## Environment setup
6
6
7
-
1. Run `azd up` on [azure-search-openai-demo](https://github.com/Azure-Samples/azure-search-openai-demo/) with GPT vision feature enabled. This will create the necessary resources for the Azure OpenAI, Azure AI Search services, and the Azure AI Vision service.
7
+
1. Run `azd up` on [azure-search-openai-demo](https://github.com/Azure-Samples/azure-search-openai-demo/) with multimodal feature enabled. This will create the necessary resources for the Azure OpenAI, Azure AI Search services, and the Azure AI Vision service.
8
8
9
9
2. Create a .env with these variables, with the values taken from `.azure/ENV-NAME/.env` in the azure-search-openai-demo repository.
@@ -31,9 +31,9 @@ This repository contains many notebooks that explain how Azure AI Search works,
31
31
pip install -r requirements.txt
32
32
```
33
33
34
-
## Notebooks
34
+
## Search on documents
35
35
36
-
These are the available notebooks, in suggested order:
36
+
These notebooks operate on the index from the [azure-search-openai-demo](https://github.com/Azure-Samples/azure-search-openai-demo/) repository, which contains chunked documents from a fictional company.
* [Azure AI Search Notebook](./azure_ai_search.ipynb)
@@ -43,3 +43,19 @@ These are the available notebooks, in suggested order:
43
43
* [RAG Evaluation](./rag_eval.ipynb)
44
44
45
45
You can find video recordings going through the notebooks [here](https://github.com/microsoft/aitour-rag-with-ai-search/tree/main/session-delivery-resources#video-recordings).
46
+
47
+
## Search on product catalog
48
+
49
+
You can also try out search techniques on a Zava product catalog.
50
+
First, create the search index and upload the products by running:
51
+
52
+
```shell
53
+
python zava_product_upload.py
54
+
```
55
+
56
+
Then, explore the different search techniques with these Python scripts:
57
+
58
+
* [Keyword Search](./zava_search_keyword.py)
59
+
* [Vector Search](./zava_search_vector.py)
60
+
* [Hybrid Search with RRF](./zava_search_rrf.py)
61
+
* [Hybrid Search with RRF + Reranker](./zava_search_reranker.py)
0 commit comments