-
Notifications
You must be signed in to change notification settings - Fork 3.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Python: Upgrading Mistral AI Connector to Version 1.0 #9542
base: main
Are you sure you want to change the base?
Python: Upgrading Mistral AI Connector to Version 1.0 #9542
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Small note, but otherwise good to go, thanks for spending some time on this!
@@ -33,7 +34,7 @@ def __init__( | |||
ai_model_id: str | None = None, | |||
api_key: str | None = None, | |||
service_id: str | None = None, | |||
async_client: MistralAsyncClient | None = None, | |||
async_client: Mistral | MistralAsyncClient | None = None, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
do we still need MistralAsyncClient? it is no longer needed and this is all breaking anyway?
Motivation and Context
This PR upgrades the MistralAI Connector to Version 1.0.
closes #9504
ToDo's
Description
Mistral released their new Version of their SDK, to enable compability with a major Version the connector needs to be updated to work with the newest Version.
Contribution Checklist