Luis Mañez
Luis Mañez
Just chiming in here to emphasize how important is to support hybrid (and semantic) search in the library, as that would improve the RAG process a lot... 😄
Thinking a bit more about it, what if, as a quick win, we add a flag in the ```AzureAISearchConfig``` class: ```csharp public bool UseHybridSearch { get; set; } = false;...
@dluc (or team), Any thoughts here? would be very nice to have (at least) Hybrid search in KM, and if I'm not too wrong, does not seem like a hard...
OK, great!, thanks. I'll do the PR as soon as possible. This does not require changes to the index schema. We are just enabling Hybrid search, and as far as...
@dluc any plans to allow custom search Schema? cos adding semantic search wouldn't be that hard in code, as I think we could take same approach I describe for Hybrid....
@dluc I'm coding the Hybrid support but found an issue and need your thoughts. I've realised that Hybrid search returns a pretty low Score values. Apparently this is by design,...
Any thoughts here @dluc ? sorry to bother, but I think would be pretty interesting to support at least Hybrid search. Thanks.
@dluc I've sent a PR to add Azure AI search Hybrid search support to the library (only Hybrid, Semantic support is much more complex). https://github.com/microsoft/kernel-memory/pull/428 The idea is to have...
Haven't tried this, but have you considered to use SemanticKernel and KernelMemory as Plugin? that way, you can configure your Prompt as you say, and the facts section would be...
**UPDATE**: I realised my issue was that my project uses the FastEndpoints packages, which are referencing YamlDotNet. My workaround was to downgrade FastEndpoint packages to a version that references YamlDotNet...