semantic-kernel
semantic-kernel copied to clipboard
Integrate cutting-edge LLM technology quickly and easily into your apps
Bumps [actions/setup-dotnet](https://github.com/actions/setup-dotnet) from 4 to 5. Release notes Sourced from actions/setup-dotnet's releases. v5.0.0 What's Changed Breaking Changes Upgrade to Node.js 24 and modernize async usage by @salmanmkc in actions/setup-dotnet#654 Make...
Bumps [actions/labeler](https://github.com/actions/labeler) from 4 to 6. Release notes Sourced from actions/labeler's releases. v6.0.0 What's Changed Add workflow file for publishing releases to immutable action package by @jcambass in actions/labeler#802 Breaking...
Bumps [actions/stale](https://github.com/actions/stale) from 5 to 10. Release notes Sourced from actions/stale's releases. v10.0.0 What's Changed Breaking Changes Upgrade to node 24 by @salmanmkc in actions/stale#1279 Make sure your runner is...
Bumps [actions/github-script](https://github.com/actions/github-script) from 6 to 8. Release notes Sourced from actions/github-script's releases. v8.0.0 What's Changed Update Node.js version support to 24.x by @salmanmkc in actions/github-script#637 README for updating actions/github-script from...
## Overview This PR adds support for configurable `MaximumAutoInvokeAttempts` in the .NET SDK's ToolCallBehavior, bringing feature parity with the Python SDK. This enables developers to control the maximum number of...
**Describe the bug** Microsoft.SemanticKernel.Connectors.MongoDB 1.59.0-preview MongoDB.Driver 3.3.0 DI will report an error when getting the VectorStore implementation class MongoDB.Driver 2.30.0 is ok **Platform** - Language: C# - Source: Microsoft.SemanticKernel.Connectors.MongoDB 1.59.0-preview...
Would be nice to be able to filter by the similarity search score on a database level. For example, If I wanted to return just the records that is greater...
MEVD currently only supports mapping a single .NET POCO to the database; but many vector databases support hierarchical data models (i.e. JSON). Supporting such models would mean allowing users to...
I am currently working on Data Ingestion project, which is more or less an ETL that uses some cloud service to parse the file, some chunkers to split it into...
We currently perform all vector search via [VECTOR_DISTANCE()](https://learn.microsoft.com/en-us/sql/t-sql/functions/vector-distance-transact-sql?view=sql-server-ver17), which performs precise vector search via brute-force (no index). SQL Server 2025 is also introducing [VECTOR_SEARCH()](https://learn.microsoft.com/en-us/sql/t-sql/functions/vector-search-transact-sql?view=sql-server-ver17), which leverages indexing to perform faster,...