We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c6a8e29 commit ee098e9Copy full SHA for ee098e9
docs/ai/semantic-kernel-dotnet-overview.md
@@ -202,9 +202,9 @@ string memoryCollectionName = "SummarizedAzureDocs";
202
foreach (var fact in facts) {
203
await memoryBuilder.SaveReferenceAsync(
204
collection: memoryCollectionName,
205
- description: fact.Key.Split(";")[1].Trim(),
+ description: fact.Key.Split(";")[0].Trim(),
206
text: fact.Value,
207
- externalId: fact.Key.Split(";")[2].Trim(),
+ externalId: fact.Key.Split(";")[1].Trim(),
208
externalSourceName: "Azure Documentation"
209
);
210
}
0 commit comments