From 4f99118920df6e19c88ea8c3c96e05d84ee38517 Mon Sep 17 00:00:00 2001 From: Sergey Zinchenko Date: Thu, 22 May 2025 13:17:51 +0200 Subject: [PATCH 1/3] feat: add parallel_tool_calls option to deployment model --- aidial_client/types/deployment.py | 1 + 1 file changed, 1 insertion(+) diff --git a/aidial_client/types/deployment.py b/aidial_client/types/deployment.py index 590de9d..8223d7b 100644 --- a/aidial_client/types/deployment.py +++ b/aidial_client/types/deployment.py @@ -19,6 +19,7 @@ class Features(ExtraAllowModel): url_attachments: Optional[bool] = None folder_attachments: Optional[bool] = None allow_resume: Optional[bool] = None + parallel_tool_calls: Optional[bool] = None class DeploymentBase(ExtraAllowModel): From 37f8ef8ca9995facbb8e01975648ecba70420f3f Mon Sep 17 00:00:00 2001 From: Vladislav Yatsun Date: Thu, 22 May 2025 13:58:01 +0200 Subject: [PATCH 2/3] chore: fix github workflow inputs --- .github/workflows/pr-title-check.yml | 2 +- .github/workflows/pr.yml | 6 +++--- .github/workflows/release.yml | 6 +++--- .github/workflows/slash-command-dispatch.yml | 2 +- 4 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/pr-title-check.yml b/.github/workflows/pr-title-check.yml index 78817fc..064092d 100644 --- a/.github/workflows/pr-title-check.yml +++ b/.github/workflows/pr-title-check.yml @@ -13,6 +13,6 @@ concurrency: jobs: pr-title-check: - uses: epam/ai-dial-ci/.github/workflows/pr-title-check.yml@2.1.0 + uses: epam/ai-dial-ci/.github/workflows/pr-title-check.yml@2.2.0 secrets: ACTIONS_BOT_TOKEN: ${{ secrets.ACTIONS_BOT_TOKEN }} diff --git a/.github/workflows/pr.yml b/.github/workflows/pr.yml index d3abe2d..b6e3d58 100644 --- a/.github/workflows/pr.yml +++ b/.github/workflows/pr.yml @@ -10,8 +10,8 @@ concurrency: jobs: run_tests: - uses: epam/ai-dial-ci/.github/workflows/python_package_pr.yml@2.1.0 + uses: epam/ai-dial-ci/.github/workflows/python_package_pr.yml@2.2.0 secrets: inherit with: - python_version: 3.8 - test_python_versions: '["3.8", "3.9", "3.10", "3.11", "3.12"]' + python-version: 3.8 + code-checks-python-versions: '["3.8", "3.9", "3.10", "3.11", "3.12"]' diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 76eaa13..e472130 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -10,8 +10,8 @@ concurrency: jobs: release: - uses: epam/ai-dial-ci/.github/workflows/python_package_release.yml@2.1.0 + uses: epam/ai-dial-ci/.github/workflows/python_package_release.yml@2.2.0 secrets: inherit with: - python_version: 3.8 - test_python_versions: '["3.8", "3.9", "3.10", "3.11", "3.12"]' + python-version: 3.8 + code-checks-python-versions: '["3.8", "3.9", "3.10", "3.11", "3.12"]' diff --git a/.github/workflows/slash-command-dispatch.yml b/.github/workflows/slash-command-dispatch.yml index 4cb86d9..0b69f7a 100644 --- a/.github/workflows/slash-command-dispatch.yml +++ b/.github/workflows/slash-command-dispatch.yml @@ -5,6 +5,7 @@ on: jobs: slashCommandDispatch: runs-on: ubuntu-latest + if: ${{ github.event.issue.pull_request }} steps: - name: Slash Command Dispatch id: scd @@ -16,7 +17,6 @@ jobs: [ { "command": "deploy-review", - "permission": "write", "issue_type": "pull-request", "repository": "epam/ai-dial-ci", "static_args": [ From c4f7d0a3799ff811461fbf0fe248b603002f068b Mon Sep 17 00:00:00 2001 From: Anton Dubovik Date: Thu, 22 May 2025 12:04:00 +0000 Subject: [PATCH 3/3] chore: fix .ort.yml --- .ort.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.ort.yml b/.ort.yml index c29f318..bda6993 100644 --- a/.ort.yml +++ b/.ort.yml @@ -9,9 +9,9 @@ excludes: comment: "Packages for testing only." resolutions: rule_violations: - - message: ".*PyPI::httpcore:1\\.0\\.5.*" + - message: ".*PyPI::httpcore:1\\.0\\.9.*" reason: "CANT_FIX_EXCEPTION" - comment: "BSD 3-Clause New or Revised License: https://github.com/encode/httpcore/blob/1.0.5/LICENSE.md" + comment: "BSD 3-Clause New or Revised License: https://github.com/encode/httpcore/blob/1.0.9/LICENSE.md" - message: ".*PyPI::httpx:0\\.25\\.2.*" reason: "CANT_FIX_EXCEPTION" comment: "BSD 3-Clause New or Revised License: https://github.com/encode/httpx/blob/0.25.0/LICENSE.md" \ No newline at end of file