Skip to content

Commit

Permalink
.Net: Small typo in example (microsoft#2336)
Browse files Browse the repository at this point in the history
### Motivation and Context

This fixes a small type in the Console output the RetrieveAsync method
requests "info5" and console says "info1"

### Description

Fix typo:

### Contribution Checklist

<!-- Before submitting this PR, please make sure: -->

- [x] The code builds clean without any errors or warnings
- [x] The PR follows the [SK Contribution
Guidelines](https://github.com/microsoft/semantic-kernel/blob/main/CONTRIBUTING.md)
and the [pre-submission formatting
script](https://github.com/microsoft/semantic-kernel/blob/main/CONTRIBUTING.md#development-scripts)
raises no violations
- [x] All unit tests pass, and I have added new tests where possible
- [x] I didn't break anyone 😄
  • Loading branch information
StevenTCramer authored and SOE-YoungS committed Oct 31, 2023
1 parent b25d6b8 commit d023800
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ await kernel.RunAsync(memorySaver, new()
// ========= Test memory remember =========
Console.WriteLine("========= Example: Recalling a Memory =========");

var answer = await memorySkill.RetrieveAsync(MemoryCollectionName, "info5", logger: logger);
var answer = await memorySkill.RetrieveAsync(MemoryCollectionName, "info1", logger: logger);
Console.WriteLine("Memory associated with 'info1': {0}", answer);
/*
Output:
Expand Down

0 comments on commit d023800

Please sign in to comment.