-
Notifications
You must be signed in to change notification settings - Fork 828
Add marker AITool for enabling code interpreters #5898
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
Conversation
...ibraries/Microsoft.Extensions.AI.Abstractions/ChatCompletion/ChatResponseUpdateExtensions.cs
Outdated
Show resolved
Hide resolved
src/Libraries/Microsoft.Extensions.AI.Abstractions/CodeInterpreterTool.cs
Show resolved
Hide resolved
8efc6c6
to
f8e1085
Compare
src/Libraries/Microsoft.Extensions.AI.Abstractions/CodeInterpreterTool.cs
Show resolved
Hide resolved
f8e1085
to
c2f4dde
Compare
@SteveSandersonMS, @eiriktsarpalis, please take a look at the changes to AIFunction / AITool. Thanks. |
🎉 Good job! The coverage increased 🎉
Full code coverage report: https://dev.azure.com/dnceng-public/public/_build/results?buildId=951977&view=codecoverage-tab |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks good
src/Libraries/Microsoft.Extensions.AI.Abstractions/CodeInterpreterTool.cs
Outdated
Show resolved
Hide resolved
Various AI services (Gemini, Bedrock, OpenAI, etc.) now support server-side code interpreting, where the model can generate code it can then execute in a sandbox. For good reason, they all require opting in. We can model that well as an AITool-derived type.
c2f4dde
to
a19dca3
Compare
🎉 Good job! The coverage increased 🎉
Full code coverage report: https://dev.azure.com/dnceng-public/public/_build/results?buildId=952853&view=codecoverage-tab |
Various AI services (Gemini, Bedrock, OpenAI, etc.) now support server-side code interpreting, where the model can generate code it can then execute in a sandbox. For good reason, they all require opting in. We can model that well as an AITool-derived type.
Microsoft Reviewers: Open in CodeFlow