Replies: 2 comments
-
Adding @westey-m for visibility. |
Beta Was this translation helpful? Give feedback.
0 replies
-
@nssidhu, it looks like your question is really about Kernel Memory, instead of Semantic Kernel. Can you ask this question in the Kernel Memory GitHub repository? The owners there will be better able to answer your question. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
I am using the following Nuget Packages
This is how i am initializing the in my Razor Class Library
Private variables are at page level/ Razor component Level.
private IKernelMemory _memory;
private IChatCompletionService _chatService = null!;
private string newIndexName = "demo-struct-rag";
I can see the Index Created On Azure Portal.

But when i search i get no result. I am expecting a Result here as it has the relevant data in the files.
var answer = await _memory.AskAsync(userInput, index: newIndexName, filter : null, minRelevance: 0.0);
Beta Was this translation helpful? Give feedback.
All reactions