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: lessons/05-rag/README.md
+6-6
Original file line number
Diff line number
Diff line change
@@ -34,7 +34,7 @@ _This video explains Retrieval Augmented Generation (RAG), a method that helps t
34
34
35
35
**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
36
36
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.
38
38
39
39
<div>
40
40
<imgsrc="./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
103
103
104
104
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.
105
105
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.
107
107
-**Wrong or inaccurate information:** The sources used to train the model may contain incorrect or misleading information, like fake news or biased opinions.
108
108
-**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.
109
109
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.
111
111
112
112
**You:** So I need to make sure the device can provide accurate information, even when it's not sure about the answer?
113
113
@@ -157,7 +157,7 @@ Once you've settled on a method for integrating external data sources, you may a
157
157
> [!NOTE]
158
158
> 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.
159
159
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.
161
161
162
162
**You**: Can you explain terms like API and Databases in more 1860s terms?
163
163
@@ -282,7 +282,7 @@ for await (const chunk of chunks) {
282
282
283
283
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.
284
284
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.
286
286
287
287
```text
288
288
Example of the output:
@@ -344,4 +344,4 @@ C. The retriever finds relevant information from external data sources.
344
344
- **Sample apps**:
345
345
* [Serverless AI Chat with RAG](https://github.com/Azure-Samples/serverless-chat-langchainjs/)
346
346
* [Ask Youtube: A RAG-based Youtube Q&A API](https://github.com/Azure-Samples/langchainjs-quickstart-demo)
347
-
- [Fulllength 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