chore: bump speakeasyVersion to 1.763.6#547
Merged
Merged
Conversation
Picks up two upstream Python generator fixes: - envVarPrefix fallback when SDK is constructed without security args (1.763.4 + 1.763.6) — Mistral() now correctly reads MISTRAL_API_KEY from the environment when no api_key argument is passed, matching the standard pattern used by OpenAI, Anthropic, Cohere, etc. - Types package support exports preserved correctly - General multi-SDK fixes for async declarations, doc rendering, exports Validated locally with speakeasy run -t mistralai-sdk: regen is clean and the generated src/mistralai/client/sdk.py contains the security fallback patch. Confirmed Mistral() + MISTRAL_API_KEY env var correctly resolves the api_key via get_security_from_env.
louis-sanna-dev
approved these changes
May 22, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Bumps the pinned Speakeasy CLI version from 1.763.2 to 1.763.6 in
.speakeasy/workflow.yaml.Why
Picks up two upstream Python generator fixes shipped between 1.763.2 and 1.763.6:
Mistral()with no args producesapi_key=Noneand never readsMISTRAL_API_KEYfrom the environment, which is inconsistent with how OpenAI, Anthropic, Cohere and other SDKs behave. With the fix, the generatedMistral.__init__passesNonethrough so the existingget_security_from_envhelper actually fires and reads the env var.Validation
Tested locally:
speakeasy run -t mistralai-sdkat 1.763.6 completes clean (same drift surface as 1.763.2, ~249 files of accumulated spec changes, no conflicts).src/mistralai/client/sdk.pycontains the security fallback patch.Mistral()with onlyMISTRAL_API_KEYset in env correctly resolves the api_key viaget_security_from_env.What this PR does NOT do
Only bumps the pinned version. The actual SDK regeneration with the new generator will happen via the next
Generate MISTRALAIworkflow run, producing the usual regen auto-PR.