Skip to content

Commit fc7b601

Browse files
authored
Update README.md (#71)
Fixed some potential misspellings/errors.
1 parent 357788f commit fc7b601

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

lessons/05-rag/README.md

+6-6
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ _This video explains Retrieval Augmented Generation (RAG), a method that helps t
3434

3535
**Leonardo:** "Genesis? Che cosa significa?" Leonardo asked, confused. Before you could respond, the world dissolved into a blur of colors and sounds, the temple fading away as you were pulled through time
3636

37-
You land in garden, it's late at night with a thick fog and eerie lights are flickering in the distance. The mansion looms before you. Leonardo looks around, his eyes wide with wonder.
37+
You land in the garden, it's late at night with a thick fog and eerie lights are flickering in the distance. The mansion looms before you. Leonardo looks around, his eyes wide with wonder.
3838

3939
<div>
4040
<img src="./assets/mansion.jpeg" alt="Old mansion shown in a deep fog" width="300">
@@ -103,11 +103,11 @@ For a more detailed explanation of the app, see [Detailed app explanation](../01
103103

104104
First, you need to address some challenges before diving into RAG details. These models, trained on vast text data, can produce relevant and correct responses. But, like any data source, their output can be inaccurate, incomplete, or misleading due to various factors.
105105

106-
- **Out of date sources:** The data used to train the model may be outdated and no longer accurate.
106+
- **Out-of-date sources:** The data used to train the model may be outdated and no longer accurate.
107107
- **Wrong or inaccurate information:** The sources used to train the model may contain incorrect or misleading information, like fake news or biased opinions.
108108
- **Non-authoritative sources:** The model may not be able to distinguish between authoritative and non-authoritative sources in its training data, leading to unreliable information.
109109

110-
This makes it difficult to tell if an information generated by an LLM is correct or not. This is where RAG comes in.
110+
This makes it difficult to tell if the information generated by an LLM is correct or not. This is where RAG comes in.
111111

112112
**You:** So I need to make sure the device can provide accurate information, even when it's not sure about the answer?
113113

@@ -157,7 +157,7 @@ Once you've settled on a method for integrating external data sources, you may a
157157
> [!NOTE]
158158
> When integrating external data sources into your AI application, it's important to consider the privacy and security implications of accessing and storing data. Make sure you have the necessary permissions and safeguards in place to protect the data and comply with any relevant regulations.
159159
160-
If you're using a database, you also want to think how you want to *search your data* to retrieve the most relevant information. This can be done using keyword search, full-text search, or more advanced techniques like semantic search or vector search that may need specific indexing. We'll cover advanced search techniques in a future lesson.
160+
If you're using a database, you also want to think about how you want to *search your data* to retrieve the most relevant information. This can be done using keyword search, full-text search, or more advanced techniques like semantic search or vector search that may need specific indexing. We'll cover advanced search techniques in a future lesson.
161161

162162
**You**: Can you explain terms like API and Databases in more 1860s terms?
163163

@@ -282,7 +282,7 @@ for await (const chunk of chunks) {
282282
283283
You can find this code in the [`example/rag-cars.js`](./example/rag-cars.js) file along with the [`hybrid.csv`](./example/hybrid.csv) file containing the data used for the retrieval.
284284
285-
**Ada:** Once you run this code, you should see the data found in the CSV file by the retriever, formatted as a markdown table, followed by the AI-generated response to the question. Try changing the question to see how the retrieved data and response changes. You can also try asking questions about unrelated topics to see how the AI model handles them.
285+
**Ada:** Once you run this code, you should see the data found in the CSV file by the retriever, formatted as a markdown table, followed by the AI-generated response to the question. Try changing the question to see how the retrieved data and response change. You can also try asking questions about unrelated topics to see how the AI model handles them.
286286
287287
```text
288288
Example of the output:
@@ -344,4 +344,4 @@ C. The retriever finds relevant information from external data sources.
344344
- **Sample apps**:
345345
* [Serverless AI Chat with RAG](https://github.com/Azure-Samples/serverless-chat-langchainjs/)
346346
* [Ask Youtube: A RAG-based Youtube Q&A API](https://github.com/Azure-Samples/langchainjs-quickstart-demo)
347-
- [Full length workshop: Create your own ChatGPT with RAG](https://moaw.dev/workshop/gh:azure-samples/azure-openai-rag-workshop/docs/workshop-qdrant.md)
347+
- [Full-length workshop: Create your own ChatGPT with RAG](https://moaw.dev/workshop/gh:azure-samples/azure-openai-rag-workshop/docs/workshop-qdrant.md)

0 commit comments

Comments
 (0)