Skip to content

Commit b1f3f96

Browse files
committed
acrolinx fixes
1 parent d323a79 commit b1f3f96

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

articles/search/tutorial-rag-build-solution-index-schema.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -73,8 +73,8 @@ In Azure AI Search, an index that works best for RAG workloads has these qualiti
7373

7474
Although Azure AI Search can't join indexes, you can create indexes that preserve parent-child relationship, and then use sequential or parallel queries in your search logic to pull from both. This exercise includes templates for parent-child elements in the same index and in separate indexes, where information from the parent index is retrieved using a lookup query.
7575

76-
> [!NOTE]
77-
> Schema design affects storage and costs. This exercise is focused on schema fundamentals. In the [Minimize storage and costs](tutorial-rag-build-solution-minimize-storage.md) tutorial, you revisit schema design to consider narrow data types, attribution, and vector configurations that offer more efficient.
76+
<!-- > [!NOTE]
77+
> Schema design affects storage and costs. This exercise is focused on schema fundamentals. In the [Minimize storage and costs](tutorial-rag-build-solution-minimize-storage.md) tutorial, you revisit schema design to consider narrow data types, attribution, and vector configurations that offer more efficient. -->
7878

7979
## Create an index for RAG workloads
8080

@@ -278,7 +278,7 @@ A minimal index for LLM is designed to store chunks of content. It typically inc
278278

279279
Fields in the child index:
280280

281-
- id
281+
- ID
282282
- chunk
283283
- chunkVectcor
284284
- parent_id

articles/search/tutorial-rag-build-solution-pipeline.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ If you don't have an Azure subscription, create a [free account](https://azure.m
4646

4747
## Provide the index schema
4848

49-
Open or create a Jupyter notebook (.ipynb) in Visual Studio code to contain the scripts that comprise the pipeline. Initial steps install packages and collect variables for the connections. After you complete the set up steps, you're ready to begin with the components of the indexing pipeline.
49+
Open or create a Jupyter notebook (`.ipynb`) in Visual Studio Code to contain the scripts that comprise the pipeline. Initial steps install packages and collect variables for the connections. After you complete the setup steps, you're ready to begin with the components of the indexing pipeline.
5050

5151
Let's start with the index schema from the [previous tutorial](tutorial-rag-build-solution-index-schema.md). It's organized around vectorized and nonvectorized chunks. It includes a `locations` field that stores AI-generated content created by the skillset.
5252

@@ -309,7 +309,7 @@ www.nasa.gov
309309
np-2018-05-2546-hQ
310310
```
311311

312-
Try a few more queries to get a sense of what the search engine returns directly so that you can compare it with an LLM-enabled response. Re-run the previous script with this query: "how much of the earth is covered in water"?
312+
Try a few more queries to get a sense of what the search engine returns directly so that you can compare it with an LLM-enabled response. Rerun the previous script with this query: "how much of the earth is covered in water"?
313313

314314
Results from this second query should look similar to the following results, which are lightly edited for concision.
315315

0 commit comments

Comments
 (0)