Skip to content

Commit 5080c72

Browse files
committed
Fix typo in retrieval-augmented-generation.md across multiple translations
1 parent 9171b8f commit 5080c72

File tree

8 files changed

+8
-8
lines changed

8 files changed

+8
-8
lines changed

03-CoreGenerativeAITechniques/02-retrieval-augmented-generation.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,7 @@ conversation.Add(new ChatMessage(ChatRole.User, query)); // this is the user pro
152152
// add the search results to the conversation
153153
await foreach (var result in searchResults.Results)
154154
{
155-
conversation.Add(new ChatMessage(ChatRole.User, $"This move is playing nearby: {result.Record.Title} and it's about {result.Record.Description}"));
155+
conversation.Add(new ChatMessage(ChatRole.User, $"This movie is playing nearby: {result.Record.Title} and it's about {result.Record.Description}"));
156156
}
157157

158158
// send the conversation to the model

translations/de/03-CoreGenerativeAITechniques/02-retrieval-augmented-generation.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,7 @@ conversation.Add(new ChatMessage(ChatRole.User, query)); // this is the user pro
152152
// add the search results to the conversation
153153
await foreach (var result in searchResults.Results)
154154
{
155-
conversation.Add(new ChatMessage(ChatRole.User, $"This move is playing nearby: {result.Record.Title} and it's about {result.Record.Description}"));
155+
conversation.Add(new ChatMessage(ChatRole.User, $"This movie is playing nearby: {result.Record.Title} and it's about {result.Record.Description}"));
156156
}
157157

158158
// send the conversation to the model

translations/fr/03-CoreGenerativeAITechniques/02-retrieval-augmented-generation.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,7 @@ conversation.Add(new ChatMessage(ChatRole.User, query)); // this is the user pro
152152
// add the search results to the conversation
153153
await foreach (var result in searchResults.Results)
154154
{
155-
conversation.Add(new ChatMessage(ChatRole.User, $"This move is playing nearby: {result.Record.Title} and it's about {result.Record.Description}"));
155+
conversation.Add(new ChatMessage(ChatRole.User, $"This movie is playing nearby: {result.Record.Title} and it's about {result.Record.Description}"));
156156
}
157157

158158
// send the conversation to the model

translations/ja/03-CoreGenerativeAITechniques/02-retrieval-augmented-generation.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,7 @@ conversation.Add(new ChatMessage(ChatRole.User, query)); // this is the user pro
152152
// add the search results to the conversation
153153
await foreach (var result in searchResults.Results)
154154
{
155-
conversation.Add(new ChatMessage(ChatRole.User, $"This move is playing nearby: {result.Record.Title} and it's about {result.Record.Description}"));
155+
conversation.Add(new ChatMessage(ChatRole.User, $"This movie is playing nearby: {result.Record.Title} and it's about {result.Record.Description}"));
156156
}
157157

158158
// send the conversation to the model

translations/ko/03-CoreGenerativeAITechniques/02-retrieval-augmented-generation.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,7 @@ conversation.Add(new ChatMessage(ChatRole.User, query)); // this is the user pro
152152
// add the search results to the conversation
153153
await foreach (var result in searchResults.Results)
154154
{
155-
conversation.Add(new ChatMessage(ChatRole.User, $"This move is playing nearby: {result.Record.Title} and it's about {result.Record.Description}"));
155+
conversation.Add(new ChatMessage(ChatRole.User, $"This movie is playing nearby: {result.Record.Title} and it's about {result.Record.Description}"));
156156
}
157157

158158
// send the conversation to the model

translations/pt/03-CoreGenerativeAITechniques/02-retrieval-augmented-generation.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,7 @@ conversation.Add(new ChatMessage(ChatRole.User, query)); // this is the user pro
152152
// add the search results to the conversation
153153
await foreach (var result in searchResults.Results)
154154
{
155-
conversation.Add(new ChatMessage(ChatRole.User, $"This move is playing nearby: {result.Record.Title} and it's about {result.Record.Description}"));
155+
conversation.Add(new ChatMessage(ChatRole.User, $"This movie is playing nearby: {result.Record.Title} and it's about {result.Record.Description}"));
156156
}
157157

158158
// send the conversation to the model

translations/tw/03-CoreGenerativeAITechniques/02-retrieval-augmented-generation.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,7 @@ conversation.Add(new ChatMessage(ChatRole.User, query)); // this is the user pro
152152
// add the search results to the conversation
153153
await foreach (var result in searchResults.Results)
154154
{
155-
conversation.Add(new ChatMessage(ChatRole.User, $"This move is playing nearby: {result.Record.Title} and it's about {result.Record.Description}"));
155+
conversation.Add(new ChatMessage(ChatRole.User, $"This movie is playing nearby: {result.Record.Title} and it's about {result.Record.Description}"));
156156
}
157157

158158
// send the conversation to the model

translations/zh/03-CoreGenerativeAITechniques/02-retrieval-augmented-generation.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,7 @@ conversation.Add(new ChatMessage(ChatRole.User, query)); // this is the user pro
152152
// add the search results to the conversation
153153
await foreach (var result in searchResults.Results)
154154
{
155-
conversation.Add(new ChatMessage(ChatRole.User, $"This move is playing nearby: {result.Record.Title} and it's about {result.Record.Description}"));
155+
conversation.Add(new ChatMessage(ChatRole.User, $"This movie is playing nearby: {result.Record.Title} and it's about {result.Record.Description}"));
156156
}
157157

158158
// send the conversation to the model

0 commit comments

Comments
 (0)