-
Notifications
You must be signed in to change notification settings - Fork 0
release: 2.0.0-alpha.10 #193
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
base: main
Are you sure you want to change the base?
release: 2.0.0-alpha.10 #193
Conversation
9808936 to
fef5569
Compare
fef5569 to
4049af3
Compare
4049af3 to
50e77c4
Compare
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.
This PR is being reviewed by Cursor Bugbot
Details
Your team is on the Bugbot Free tier. On this plan, Bugbot will review limited PRs each billing cycle for each member of your team.
To receive Bugbot reviews on all of your PRs, visit the Cursor dashboard to activate Pro and start your 14-day free trial.
| # Pydantic v1 does not support Python 3.14, skip these tests | ||
| if [[ "$UV_PYTHON" != "3.14" ]]; then | ||
| # Skip Pydantic v1 tests on latest Python (not supported) | ||
| if [[ "$UV_PYTHON" != "$PY_VERSION_MAX" ]]; then |
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.
Bug: Version comparison breaks when UV_PYTHON is externally set
The comparison "$UV_PYTHON" != "$PY_VERSION_MAX" now compares against ">=3.14.0", but when UV_PYTHON is set externally (e.g., UV_PYTHON=3.14), it won't match this string. Previously the check was "$UV_PYTHON" != "3.14" which would correctly skip Pydantic v1 tests on Python 3.14. Now, if a user runs with UV_PYTHON=3.14, the Pydantic v1 tests will incorrectly execute and fail since Pydantic v1 doesn't support Python 3.14.
50e77c4 to
3ca517b
Compare
3ca517b to
1fe9f63
Compare
1fe9f63 to
d7e3e51
Compare
d7e3e51 to
e490640
Compare
e490640 to
ce6f41e
Compare
ce6f41e to
300c8ec
Compare
Automated Release PR
2.0.0-alpha.10 (2025-12-11)
Full Changelog: v2.0.0-alpha.9...v2.0.0-alpha.10
Features
Bug Fixes
Chores
This pull request is managed by Stainless's GitHub App.
The semver version number is based on included commit messages. Alternatively, you can manually set the version number in the title of this pull request.
For a better experience, it is recommended to use either rebase-merge or squash-merge when merging this pull request.
🔗 Stainless website
📚 Read the docs
🙋 Reach out for help or questions
Note
Adds fine_tuning.estimate_price, supports
dedicatedfilter on models.list, updates chat response_format to structured outputs, and refreshes CLI/tests/docs with version bump.client.fine_tuning.estimate_price(sync/async) with new params/types (FineTuningEstimatePriceParams/Response).client.models.listto acceptdedicatedfilter via query; remove custom dedicated filtering helper.response_formatto structured outputs (text,json_schema,json_object) with new TypedDicts and docstrings.together models listto passdedicatedAPI param and simplify implementation.api.mdfor new endpoints/params; README nested params example now showsendpoints.create.SequenceNotStrfor pyright inference; add/clarify docstrings across models (audio/voice, autoscaling, endpoints, hardware, video, etc.).estimate_priceand modelsdedicatedfilter; adjust chat tests for newresponse_format.2.0.0-alpha.10; update changelog and stats (44 endpoints).Written by Cursor Bugbot for commit 300c8ec. This will update automatically on new commits. Configure here.