Devis Lucato
Devis Lucato
> @dluc, I have made a draft PR to showcase my idea: dotnet/aspnetcore#444. I know that is a structural change and requires a lot of effort, but perhaps it could...
> ### Context / Scenario > > I want to use a custom EmbeddingGenerator that depends on some services that are registered in Dependency INjection. > ### The problem >...
You should be able to swap content.url with the URL upon receiving the response, there is a property with the URL
> @dluc Do you have any preference between the options: > > * replace "content.url" during indexing with the real url value? > > * additing the url as an...
/cc @afederici75 FYI
``` MemoryFilters /* 1 */ .ByAnyTagValue("Authorized", ["group1", "group2", "group3"]) // translates to search.in() /* 2 */ .And().ByTag("Department", "IT") // translates to: and department eq IT /* 3 */ .And().ByTag("Department", "Marketing")...
btw, I looked into the option to provide a fluent language and custom filters. For instance, I would love having a "NOT" filter to exclude. For now I'm using the...
This is great, docs surely need more love. I was about to quote the link on Linkedin but I couldn't find how to tag and attribute this to you on...
The number of tokens is logged in the application logs. If you need to count upfront, you can use the provided tokenizers, e.g. we just added tiktoken counters that covers...
Does this happen only with SimpleQueues? By design SimpleQueues doesn't support poison queues, so that at dev time one can debug without having to worry about the number of retries....