Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .speakeasy/gen.lock
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ management:
docVersion: 0.0.2
speakeasyVersion: 1.462.2
generationVersion: 2.486.1
releaseVersion: 1.3.0
configChecksum: e3b0a94e8a244b9061b81373ae58d4ed
releaseVersion: 1.3.1
configChecksum: 8f82dea19ae1fcd5cea1d4f7837fc137
repoURL: https://github.com/mistralai/client-python.git
installationURL: https://github.com/mistralai/client-python.git
published: true
Expand Down
2 changes: 1 addition & 1 deletion .speakeasy/gen.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ generation:
oAuth2ClientCredentialsEnabled: true
oAuth2PasswordEnabled: false
python:
version: 1.3.0
version: 1.3.1
additionalDependencies:
dev:
pytest: ^8.2.2
Expand Down
3 changes: 2 additions & 1 deletion .speakeasy/workflow.lock
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ sources:
sourceBlobDigest: sha256:ebc7c1bb20aa87873a255cebea1e451099d8949ea1bbff81ec5fd45a107e3a32
tags:
- latest
- speakeasy-sdk-regen-1736937863
targets:
mistralai-azure-sdk:
source: mistral-azure-source
Expand All @@ -39,7 +40,7 @@ targets:
sourceRevisionDigest: sha256:84bbc6f6011a31e21c8a674b01104446f986c7b5a6b002357800be8ef939b8da
sourceBlobDigest: sha256:ebc7c1bb20aa87873a255cebea1e451099d8949ea1bbff81ec5fd45a107e3a32
codeSamplesNamespace: mistral-openapi-code-samples
codeSamplesRevisionDigest: sha256:3868602e7de978e42d8372711d9711af5338a2f2bbf7671a5998c6176f74f58f
codeSamplesRevisionDigest: sha256:7461afcdcac02dc78b61b234ee4c5e25abbaca9ad6cf5aab415e7c97b5638b49
workflow:
workflowVersion: 1.0.0
speakeasyVersion: 1.462.2
Expand Down
12 changes: 11 additions & 1 deletion RELEASES.md
Original file line number Diff line number Diff line change
Expand Up @@ -128,4 +128,14 @@ Based on:
### Generated
- [python v1.3.0] .
### Releases
- [PyPI v1.3.0] https://pypi.org/project/mistralai/1.3.0 - .
- [PyPI v1.3.0] https://pypi.org/project/mistralai/1.3.0 - .

## 2025-01-15 10:44:07
### Changes
Based on:
- OpenAPI Doc
- Speakeasy CLI 1.462.2 (2.486.1) https://github.com/speakeasy-api/speakeasy
### Generated
- [python v1.3.1] .
### Releases
- [PyPI v1.3.1] https://pypi.org/project/mistralai/1.3.1 - .
68 changes: 7 additions & 61 deletions poetry.lock

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "mistralai"
version = "1.3.0"
version = "1.3.1"
description = "Python Client SDK for the Mistral AI API."
authors = ["Mistral"]
readme = "README-PYPI.md"
Expand Down
2 changes: 1 addition & 1 deletion src/mistralai/_version.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
import importlib.metadata

__title__: str = "mistralai"
__version__: str = "1.3.0"
__version__: str = "1.3.1"

try:
if __package__ is not None:
Expand Down
4 changes: 2 additions & 2 deletions src/mistralai/sdkconfiguration.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,9 @@ class SDKConfiguration:
server: Optional[str] = ""
language: str = "python"
openapi_doc_version: str = "0.0.2"
sdk_version: str = "1.3.0"
sdk_version: str = "1.3.1"
gen_version: str = "2.486.1"
user_agent: str = "speakeasy-sdk/python 1.3.0 2.486.1 0.0.2 mistralai"
user_agent: str = "speakeasy-sdk/python 1.3.1 2.486.1 0.0.2 mistralai"
retry_config: OptionalNullable[RetryConfig] = Field(default_factory=lambda: UNSET)
timeout_ms: Optional[int] = None

Expand Down
Loading