Azure-Samples / chat-with-your-data-solution-accelerator

A Solution Accelerator for the RAG pattern running in Azure, using Azure AI Search for retrieval and Azure OpenAI large language models to power ChatGPT-style and Q&A experiences. This includes most common requirements and best practices.
https://azure.microsoft.com/products/search
MIT License
787 stars 395 forks source link

build: bump semantic-kernel from 0.9.7b1 to 0.9.8b1 #894

Closed dependabot[bot] closed 4 months ago

dependabot[bot] commented 4 months ago

Bumps semantic-kernel from 0.9.7b1 to 0.9.8b1.

Release notes

Sourced from semantic-kernel's releases.

python-0.9.8b1

Notable Changes

  • In our ongoing effort to achieve parity with dotnet, we have phased out the Basic, Action, and Stepwise planners. This update leaves the Sequential and Function Calling Stepwise planners as the available options.
  • We’ve made strides in aligning the Python tool call behavior with that of dotnet. You can now adjust the tool call behavior directly in the prompt execution settings, eliminating the need to specify tool_choice = "auto", tools = get_tool_call_object(...), and so on. For more details, refer to the FunctionCallBehavior implementation. There are several methods to adjust the tool call behavior, such as:
filter = {"excluded_plugins": ["ChatBot"]}
req_settings.function_call_behavior = FunctionCallBehavior.EnableFunctions(auto_invoke=True, filters=filter)

or

req_settings.function_call_behavior = FunctionCallBehavior.AutoInvokeKernelFunctions()

Our Auto Function Calling concept samples implement this new behavior.

What's Changed

New Contributors

Full Changelog: https://github.com/microsoft/semantic-kernel/compare/python-0.9.7b1...python-0.9.8b1

Commits
  • 7b4aba4 Python: Bump Python version to 0.9.8b1 for a release. (#6178)
  • e389ada .Net: Update Concepts README for new Prompt samples (#6173)
  • ec9fa14 .Net: Add Sessions (Code Interpreter) Core Plugin and Demo Project (#6160)
  • 5249aed .Net: Improvements for Azure Cosmos DB for MongoDB connector (#6169)
  • 4c7fcb1 .Net: Version 1.11.0 (#6168)
  • 7e4faa3 Python: Add ACA Python Sessions (Code Interpreter) Core Plugin, samples, and ...
  • 2ae9dc7 .Net: Merge the Prompty feature branch to main (#6097)
  • 522bfd6 Python: Use a Jinja2 sandboxed env to prevent running unsafe code. (#6163)
  • 9e70e71 Python: updating pinecone client (#6021)
  • 431d18b .Net: Add request uri and payload to RestApiOperationResponse (#6082)
  • Additional commits viewable in compare view


Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot show ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
github-actions[bot] commented 4 months ago

Coverage

Coverage Report •
FileStmtsMissCoverMissing
code/backend/batch/utilities/orchestrator
   SemanticKernel.py540100% 
TOTAL229667570% 

Tests Skipped Failures Errors Time
178 0 :zzz: 0 :x: 0 :fire: 16.146s :stopwatch:
cecheta commented 4 months ago

This should be ready for merge, however I will not approve my own changes

We have good confidence in updates to semantic kernel due to the extensive unit and functional tests