diff --git a/.speakeasy/gen.lock b/.speakeasy/gen.lock index 5587955b..359b1b43 100644 --- a/.speakeasy/gen.lock +++ b/.speakeasy/gen.lock @@ -5,15 +5,15 @@ management: docVersion: 1.0.0 speakeasyVersion: 1.761.1 generationVersion: 2.879.6 - releaseVersion: 2.4.5 - configChecksum: f6852fb59e3bcc9a7750210521f2c2d4 + releaseVersion: 2.4.6 + configChecksum: 49adf68e99fa9f97295f7d2573756c6b repoURL: https://github.com/mistralai/client-python.git installationURL: https://github.com/mistralai/client-python.git published: true persistentEdits: - generation_id: bcab0c88-1877-4209-a77d-49b4681f030e - pristine_commit_hash: 56d30233849b5a3cb3d207e646ee849c77835f70 - pristine_tree_hash: 3feb3429dfead0d0228262509f23a6c5e9c9c7a2 + generation_id: 69ae9488-003b-4e00-aec6-df7bf14ee113 + pristine_commit_hash: fba3a48c7646098340a73b0e5c20dffbb8d023a7 + pristine_tree_hash: db3439e8c42d4b3d2e613c3e58531733ec6fe8df features: python: acceptHeaders: 3.0.0 @@ -3348,8 +3348,8 @@ trackedFiles: pristine_git_object: 036d44b8cfc51599873bd5c401a6aed30450536c src/mistralai/client/_version.py: id: cc807b30de19 - last_write_checksum: sha1:6b2772cd63b60cddf4ea95d94cfc44f81a878a73 - pristine_git_object: 9f9ae8c6224af17b3e22410b33f5a5ad37389e33 + last_write_checksum: sha1:b60d9f81024f0a37e4137751a7e7e9e323f2b9b8 + pristine_git_object: d4969426e57c58605d8874bcb7418d7eecdd9dd7 src/mistralai/client/accesses.py: id: 76fc53bfcf59 last_write_checksum: sha1:de197fbbfea8bc95f44b4e7ee1b39e68fdde8bc7 @@ -8716,14 +8716,6 @@ examples: application/json: {} examplesVersion: 1.0.2 generatedTests: {} -releaseNotes: | - ## Python SDK Changes: - * `mistral.workflows.executions.stream()`: `response.[].data.data.union(CustomTaskInProgressResponse).attributes.payload` **Changed** (Breaking ⚠️) - * `mistral.workflows.events.get_stream_events()`: `response.[].data.data` **Changed** (Breaking ⚠️) - * `mistral.workflows.events.get_workflow_events()`: `response.events[]` **Changed** (Breaking ⚠️) - * `mistral.events.get_stream_events()`: `response.[].data.data.union(CustomTaskInProgressResponse).attributes.payload` **Changed** (Breaking ⚠️) - * `mistral.events.get_workflow_events()`: `response.events[]` **Changed** (Breaking ⚠️) - * `mistral.beta.connectors.get_authentication_methods()`: `response.[].has_default_credentials` **Added** generatedFiles: - .gitattributes - .vscode/settings.json diff --git a/.speakeasy/gen.yaml b/.speakeasy/gen.yaml index a246d5a7..ff877688 100644 --- a/.speakeasy/gen.yaml +++ b/.speakeasy/gen.yaml @@ -32,7 +32,7 @@ generation: generateNewTests: false skipResponseBodyAssertions: false python: - version: 2.4.5 + version: 2.4.6 additionalDependencies: dev: pytest: ^8.2.2 diff --git a/.speakeasy/workflow.lock b/.speakeasy/workflow.lock index aa443ef1..6605a7e6 100644 --- a/.speakeasy/workflow.lock +++ b/.speakeasy/workflow.lock @@ -41,7 +41,7 @@ targets: sourceRevisionDigest: sha256:6b325264f8e8a60caa875776438b07d4eb5b56283da0796b283e9c5597810e22 sourceBlobDigest: sha256:11d21b003c903f5539d5d7a79cf8fe17d1d284b48e47da0009eac3866ad58899 codeSamplesNamespace: mistral-openapi-code-samples - codeSamplesRevisionDigest: sha256:95c443855a95966259bd108beec0cbdb8238f6f753dc4b021bf833d398e86c0c + codeSamplesRevisionDigest: sha256:a5d1bd3c9b8821767ebf9e600dd03c9f27a6994d555ed72ca1088cfa9aa58b0b workflow: workflowVersion: 1.0.0 speakeasyVersion: 1.761.1 diff --git a/RELEASES.md b/RELEASES.md index 2f69eacf..5b96cbc4 100644 --- a/RELEASES.md +++ b/RELEASES.md @@ -638,4 +638,14 @@ Based on: ### Generated - [python v2.4.5] . ### Releases -- [PyPI v2.4.5] https://pypi.org/project/mistralai/2.4.5 - . \ No newline at end of file +- [PyPI v2.4.5] https://pypi.org/project/mistralai/2.4.5 - . + +## 2026-05-11 07:59:46 +### Changes +Based on: +- OpenAPI Doc +- Speakeasy CLI 1.761.1 (2.879.6) https://github.com/speakeasy-api/speakeasy +### Generated +- [python v2.4.6] . +### Releases +- [PyPI v2.4.6] https://pypi.org/project/mistralai/2.4.6 - . \ No newline at end of file diff --git a/pyproject.toml b/pyproject.toml index f79b279f..f3d58127 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "mistralai" -version = "2.4.5" +version = "2.4.6" description = "Python Client SDK for the Mistral AI API." authors = [{ name = "Mistral" }] requires-python = ">=3.10" diff --git a/src/mistralai/client/_version.py b/src/mistralai/client/_version.py index 9f9ae8c6..d4969426 100644 --- a/src/mistralai/client/_version.py +++ b/src/mistralai/client/_version.py @@ -4,10 +4,10 @@ import importlib.metadata __title__: str = "mistralai" -__version__: str = "2.4.5" +__version__: str = "2.4.6" __openapi_doc_version__: str = "1.0.0" __gen_version__: str = "2.879.6" -__user_agent__: str = "speakeasy-sdk/python 2.4.5 2.879.6 1.0.0 mistralai" +__user_agent__: str = "speakeasy-sdk/python 2.4.6 2.879.6 1.0.0 mistralai" try: if __package__ is not None: diff --git a/uv.lock b/uv.lock index 2f23fc8b..4fd91372 100644 --- a/uv.lock +++ b/uv.lock @@ -1015,7 +1015,7 @@ wheels = [ [[package]] name = "mistralai" -version = "2.4.5" +version = "2.4.6" source = { editable = "." } dependencies = [ { name = "eval-type-backport" },