Atiqur Rahman Foyshal
Atiqur Rahman Foyshal
**Describe the bug** `await kernel.InvokeAsync(memoryPlugin["Save"], new() { [Microsoft.SemanticKernel.Plugins.Memory.TextMemoryPlugin.InputParam] = "My family is from New York", [Microsoft.SemanticKernel.Plugins.Memory.TextMemoryPlugin.CollectionParam] = MemoryCollectionName, [Microsoft.SemanticKernel.Plugins.Memory.TextMemoryPlugin.KeyParam] = "info5", });` After executing this method, it is inserting a...
### Motivation and Context TextMemoryPlugin **RecallAsync** returns encoded data if the data is not English. ### Description I have added a method to decode unicode escape sequences. ### Contribution Checklist...
**Describe the bug** Using SQLite memory plugin, **recall** function can not find any relevant memory if search text is not in English language, even if there is an exact match....
### Motivation and Context To improve efficiency and performance by reducing the number of HTTP requests during batch deletions in **RemoveBatchAsync**. ### Description The updated **RemoveBatchAsync** method in **WeaviateMemoryStore** now...
### Motivation and Context To improve performance by reducing the number of HTTP requests needed to delete keys in **RemoveAsync** and **RemoveBatchAsync**. ### Description The updated **RemoveAsync** and **RemoveBatchAsync** methods...
### Motivation and Context **GetBatchAsync** was executing n (equal to the number of keys) queries, where a single query could retrieve multiple entries at once. ### Description Now current implementation...
### Motivation and Context GetAsync is returning with embedding even if the withEmbedding parameter is false. ### Description Current implementation will return MemoryRecord based on withEmbedding flag. ### Note The...
`Messagesettings.Usepopupnotifications` was not used — a hardcoded false was passed to JavaScript. This PR removes the hardcoded value and uses the correct setting value.
This PR adds `TableFor`, `ColumnFor` and `FromTable` extension methods for `IDeleteExpressionRoot`, `IAlterExpressionRoot`, and `ISchemaExpressionRoot `to ensure table and column names are resolved via `NameCompatibilityManager`. Supports schema checks, altering, adding, and...