Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also orlearn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also.Learn more about diff comparisons here.
base repository:microsoft/semantic-kernel
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base:python-1.38.0
Choose a base ref
Loading
...
head repository:microsoft/semantic-kernel
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare:python-1.39.0
Choose a head ref
Loading
  • 5commits
  • 76files changed
  • 6contributors

Commits on Nov 13, 2025

  1. Fixes to Get/Delete for Guid keys (#13353)

    This PR fixes a bug reported offline by@jeffhandley ```logfail: Microsoft.Extensions.DataIngestion.IngestionPipeline[6]      An error occurred while ingesting document 'Example_GPS_Watch.md'.      System.InvalidCastException: Unable to cast object of type 'System.Guid' to type 'System.String'.         at System.Linq.Enumerable.CastICollectionIterator`1.MoveNext()         at Azure.Search.Documents.Models.IndexDocumentsBatch.Delete(String keyName, IEnumerable`1 keyValues)         at Azure.Search.Documents.SearchClient.DeleteDocumentsAsync(String keyName, IEnumerable`1 keyValues, IndexDocumentsOptions options, CancellationToken cancellationToken)         at Microsoft.Extensions.VectorData.VectorStoreErrorHandler.RunOperationAsync[TResult,TException](VectorStoreCollectionMetadata metadata, String operationName, Func`1 operation)         at Microsoft.Extensions.DataIngestion.VectorStoreWriter`1.WriteAsync(IAsyncEnumerable`1 chunks, CancellationToken cancellationToken)         at Microsoft.Extensions.DataIngestion.IngestionPipeline`1.IngestAsync(IngestionDocument document, Activity parentActivity, CancellationToken cancellationToken)         at Microsoft.Extensions.DataIngestion.IngestionPipeline`1.ProcessAsync(IEnumerable`1 files, Activity rootActivity, CancellationToken cancellationToken)+MoveNext()```---------Co-authored-by: Shay Rojansky <roji@roji.org>
    @adamsitnik@roji
    adamsitnik androji authoredNov 13, 2025
    Configuration menu
    Copy the full SHA
    de20575View commit details
    Browse the repository at this point in the history

Commits on Nov 19, 2025

  1. .Net: Enable argument types retention in handoff orchestration. (#13367)

    This PR fixes the issue when an MCP function is called with an argumentthat doesn't match the expected parameter type.From chat:```csharppublic async Task<string> GetDataAsync(    [Description("Optional modality type filter (CT, MRI, XA, etc.). Make sure it is a LIST of strings. Examples: ['CT'] or ['CT', 'MR']")] List<string>? modalityType = null, (...............)```When we tested it using Semantic Kernel without MCP, it returned thedata in the correct format. However, when we integrated it into the tool(one API Server where we initialize the Kernel and another MCP Serverwith all the functions), we get the incorrect format:<img width="1186" height="175" alt="image"src="https://github.com/user-attachments/assets/9efd26e2-77fc-4ec2-85ed-60a35fa9e821"/>
    @SergeyMenshykh
    SergeyMenshykh authoredNov 19, 2025
    Configuration menu
    Copy the full SHA
    73337dbView commit details
    Browse the repository at this point in the history

Commits on Nov 20, 2025

  1. .NET Fix - Surface agent failure for orchestration (#13369)

    ### Motivation and Context<!-- Thank you for your contribution to the semantic-kernel repo!Please help reviewers and future users, providing the followinginformation:  1. Why is this change required?  2. What problem does it solve?  3. What scenario does it contribute to?  4. If it fixes an open issue, please link to the issue here.-->Agent failure results in timeout for `OrchestrationResult`.Fixes:#13149Fixes:#13040Fixes:#12987### Description<!-- Describe your changes, the overall approach, the underlying design.These notes will help understanding how your code works. Thanks! -->`AgentActor` exception being eaten by the agent-runtime and not exposedvia the `TaskCompletionSource<>` used by the `OrchestrationResult`/### Contribution Checklist<!-- Before submitting this PR, please make sure: -->- [X] The code builds clean without any errors or warnings- [X] The PR follows the [SK ContributionGuidelines](https://github.com/microsoft/semantic-kernel/blob/main/CONTRIBUTING.md)and the [pre-submission formattingscript](https://github.com/microsoft/semantic-kernel/blob/main/CONTRIBUTING.md#development-scripts)raises no violations- [X] All unit tests pass, and I have added new tests where possible- [X] I didn't break anyone 😄
    @crickman
    crickman authoredNov 20, 2025
    Configuration menu
    Copy the full SHA
    5b30c8bView commit details
    Browse the repository at this point in the history

Commits on Nov 24, 2025

  1. Python: Migrate to new Google GenAI SDK (#13371)

    ### Motivation and Context<!-- Thank you for your contribution to the semantic-kernel repo!Please help reviewers and future users, providing the followinginformation:  1. Why is this change required?  2. What problem does it solve?  3. What scenario does it contribute to?  4. If it fixes an open issue, please link to the issue here.-->Closes#12970,#13352### Description<!-- Describe your changes, the overall approach, the underlying design.These notes will help understanding how your code works. Thanks! -->1. Migrate Google AI connector to use the new Google AI SDK.2. This PR also marks the VertexAI connector as deprecated in favor ofthe Google AI connector. With this update, if users wants to connect toa VertexAI project instead of a Google AI endpoint, they can do so withthe Google AI connector.3. This PR also adds the ability for users to provide a custom client tothe Google AI connector (#13352).4. This PR also marks `AzureTextCompletion` deprecated.### Contribution Checklist<!-- Before submitting this PR, please make sure: -->- [x] The code builds clean without any errors or warnings- [x] The PR follows the [SK ContributionGuidelines](https://github.com/microsoft/semantic-kernel/blob/main/CONTRIBUTING.md)and the [pre-submission formattingscript](https://github.com/microsoft/semantic-kernel/blob/main/CONTRIBUTING.md#development-scripts)raises no violations- [x] All unit tests pass, and I have added new tests where possible- [ ] I didn't break anyone 😄
    @TaoChenOSU
    TaoChenOSU authoredNov 24, 2025
    Configuration menu
    Copy the full SHA
    d84363fView commit details
    Browse the repository at this point in the history

Commits on Nov 26, 2025

  1. Python: Bump to v1.39.0 for a release (#13392)

    ### Motivation and ContextBump to v1.39.0 for a release<!-- Thank you for your contribution to the semantic-kernel repo!Please help reviewers and future users, providing the followinginformation:  1. Why is this change required?  2. What problem does it solve?  3. What scenario does it contribute to?  4. If it fixes an open issue, please link to the issue here.-->### DescriptionBump to v1.39.0 for a release<!-- Describe your changes, the overall approach, the underlying design.These notes will help understanding how your code works. Thanks! -->### Contribution Checklist<!-- Before submitting this PR, please make sure: -->- [X] The code builds clean without any errors or warnings- [X] The PR follows the [SK ContributionGuidelines](https://github.com/microsoft/semantic-kernel/blob/main/CONTRIBUTING.md)and the [pre-submission formattingscript](https://github.com/microsoft/semantic-kernel/blob/main/CONTRIBUTING.md#development-scripts)raises no violations- [X] All unit tests pass, and I have added new tests where possible- [ ] I didn't break anyone 😄
    @moonbox3
    moonbox3 authoredNov 26, 2025
    Configuration menu
    Copy the full SHA
    9cb9abaView commit details
    Browse the repository at this point in the history
Loading

[8]ページ先頭

©2009-2025 Movatter.jp