diff --git a/.speakeasy/gen.lock b/.speakeasy/gen.lock index 513be40..6ad8a4b 100644 --- a/.speakeasy/gen.lock +++ b/.speakeasy/gen.lock @@ -3,10 +3,10 @@ id: 2d045ec7-2ebb-4f4d-ad25-40953b132161 management: docChecksum: ee15d853ecc28d415d6b33191893a6ff docVersion: 0.0.2 - speakeasyVersion: 1.434.4 + speakeasyVersion: 1.434.7 generationVersion: 2.452.0 - releaseVersion: 1.2.0 - configChecksum: 17ae764aa509274d1cf2d75af5bf6abb + releaseVersion: 1.2.1 + configChecksum: 5d659f51b118508e47958545e6b539d2 repoURL: https://github.com/mistralai/client-python.git installationURL: https://github.com/mistralai/client-python.git published: true diff --git a/.speakeasy/gen.yaml b/.speakeasy/gen.yaml index 5a4f1a0..501ac53 100644 --- a/.speakeasy/gen.yaml +++ b/.speakeasy/gen.yaml @@ -13,7 +13,7 @@ generation: oAuth2ClientCredentialsEnabled: true oAuth2PasswordEnabled: false python: - version: 1.2.0 + version: 1.2.1 additionalDependencies: dev: pytest: ^8.2.2 diff --git a/.speakeasy/workflow.lock b/.speakeasy/workflow.lock index 46a7d2e..5e498aa 100644 --- a/.speakeasy/workflow.lock +++ b/.speakeasy/workflow.lock @@ -1,4 +1,4 @@ -speakeasyVersion: 1.434.4 +speakeasyVersion: 1.434.7 sources: mistral-azure-source: sourceNamespace: mistral-openapi-azure @@ -18,6 +18,7 @@ sources: sourceBlobDigest: sha256:559403eaaa97c021eaf0022adddb1066694d879a946c87057e942806d5a2a2a2 tags: - latest + - main targets: mistralai-azure-sdk: source: mistral-azure-source @@ -35,7 +36,7 @@ targets: sourceRevisionDigest: sha256:e658442ebfc83351cbb7873fb17b03f07ff9edebd8eddfce5577e2c5c7bfafce sourceBlobDigest: sha256:559403eaaa97c021eaf0022adddb1066694d879a946c87057e942806d5a2a2a2 codeSamplesNamespace: mistral-openapi-code-samples - codeSamplesRevisionDigest: sha256:e56faedc510d1c011d19e5fbbaa9d41917ffd6c22833b0795a61aa6da1cbca9b + codeSamplesRevisionDigest: sha256:f48900efe513aa95888e4035452ba1d54a2b1f8e872454ccb5bdca24d4fc7b09 workflow: workflowVersion: 1.0.0 speakeasyVersion: latest diff --git a/RELEASES.md b/RELEASES.md index b504c7f..6ffcd17 100644 --- a/RELEASES.md +++ b/RELEASES.md @@ -58,4 +58,14 @@ Based on: ### Generated - [python v1.2.0] . ### Releases -- [PyPI v1.2.0] https://pypi.org/project/mistralai/1.2.0 - . \ No newline at end of file +- [PyPI v1.2.0] https://pypi.org/project/mistralai/1.2.0 - . + +## 2024-11-08 13:41:24 +### Changes +Based on: +- OpenAPI Doc +- Speakeasy CLI 1.434.7 (2.452.0) https://github.com/speakeasy-api/speakeasy +### Generated +- [python v1.2.1] . +### Releases +- [PyPI v1.2.1] https://pypi.org/project/mistralai/1.2.1 - . \ No newline at end of file diff --git a/pyproject.toml b/pyproject.toml index 31aea5d..a239400 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "mistralai" -version = "1.2.0" +version = "1.2.1" description = "Python Client SDK for the Mistral AI API." authors = ["Mistral"] readme = "README-PYPI.md" diff --git a/src/mistralai/_version.py b/src/mistralai/_version.py index 752c9ed..b7e6d2f 100644 --- a/src/mistralai/_version.py +++ b/src/mistralai/_version.py @@ -3,7 +3,7 @@ import importlib.metadata __title__: str = "mistralai" -__version__: str = "1.2.0" +__version__: str = "1.2.1" try: if __package__ is not None: diff --git a/src/mistralai/sdkconfiguration.py b/src/mistralai/sdkconfiguration.py index 101757f..cc20551 100644 --- a/src/mistralai/sdkconfiguration.py +++ b/src/mistralai/sdkconfiguration.py @@ -28,9 +28,9 @@ class SDKConfiguration: server: Optional[str] = "" language: str = "python" openapi_doc_version: str = "0.0.2" - sdk_version: str = "1.2.0" + sdk_version: str = "1.2.1" gen_version: str = "2.452.0" - user_agent: str = "speakeasy-sdk/python 1.2.0 2.452.0 0.0.2 mistralai" + user_agent: str = "speakeasy-sdk/python 1.2.1 2.452.0 0.0.2 mistralai" retry_config: OptionalNullable[RetryConfig] = Field(default_factory=lambda: UNSET) timeout_ms: Optional[int] = None