-
Notifications
You must be signed in to change notification settings - Fork 3.5k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
.Net: Add a request index to the streamed function call update content #10129
Merged
SergeyMenshykh
merged 11 commits into
microsoft:main
from
SergeyMenshykh:add-request-index
Jan 14, 2025
Merged
.Net: Add a request index to the streamed function call update content #10129
SergeyMenshykh
merged 11 commits into
microsoft:main
from
SergeyMenshykh:add-request-index
Jan 14, 2025
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
…ers can group the messages by the request.
markwallace-microsoft
added
.NET
Issue or Pull requests regarding .NET code
kernel
Issues or pull requests impacting the core kernel
kernel.core
labels
Jan 8, 2025
SergeyMenshykh
temporarily deployed
to
integration
January 8, 2025 18:20 — with
GitHub Actions
Inactive
SergeyMenshykh
temporarily deployed
to
integration
January 13, 2025 12:45 — with
GitHub Actions
Inactive
…from different requests
SergeyMenshykh
had a problem deploying
to
integration
January 13, 2025 19:05 — with
GitHub Actions
Error
SergeyMenshykh
temporarily deployed
to
integration
January 13, 2025 19:09 — with
GitHub Actions
Inactive
SergeyMenshykh
changed the title
.Net: Add a request index to the streamed chat message content
.Net: Add a request index to the streamed function call update content
Jan 13, 2025
SergeyMenshykh
temporarily deployed
to
integration
January 13, 2025 19:37 — with
GitHub Actions
Inactive
SergeyMenshykh
temporarily deployed
to
integration
January 14, 2025 10:09 — with
GitHub Actions
Inactive
westey-m
reviewed
Jan 14, 2025
dotnet/src/SemanticKernel.Abstractions/Contents/FunctionCallContentBuilder.cs
Outdated
Show resolved
Hide resolved
westey-m
approved these changes
Jan 14, 2025
markwallace-microsoft
approved these changes
Jan 14, 2025
dotnet/src/SemanticKernel.Abstractions/Contents/StreamingFunctionCallUpdateContent.cs
Show resolved
Hide resolved
SergeyMenshykh
temporarily deployed
to
integration
January 14, 2025 10:43 — with
GitHub Actions
Inactive
SergeyMenshykh
temporarily deployed
to
integration
January 14, 2025 10:55 — with
GitHub Actions
Inactive
westey-m
approved these changes
Jan 14, 2025
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
function_calling
kernel.core
kernel
Issues or pull requests impacting the core kernel
.NET
Issue or Pull requests regarding .NET code
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Motivation and Context:
Today, it's impossible to determine which request a streaming function call update belongs to or originates from. As a result, if an AI service interaction leads to multiple requests to an AI model - let's say one per function call - it's impossible to assemble the function call contents from the streamed updates. This is because the streaming function call updates from the second request override those from the first one.
Description
This PR adds the
RequestIndex
to theStreamingFunctionCallUpdateContent
class and updates the {Azure}OpenAI connectors to set it. Finally, it updates theFunctionCallContentBuilder
class to construct a composite index fromRequestIndex
andFunctionCallIndex
and uses it to uniquely identify the function call content updates across requests.Closes: #10006