-
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
Open
stainless-app
wants to merge
11
commits into
main
Choose a base branch
from
release-please--branches--main--changes--next
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
11 commits
Select commit
Hold shift + click to select a range
6268112
chore(internal): avoid using unstable Python versions in tests
stainless-app[bot] e5cfa45
feat(api): api update
stainless-app[bot] bac6834
codegen metadata
stainless-app[bot] 4f0e106
codegen metadata
stainless-app[bot] 048f2b7
fix(types): allow pyright to infer TypedDict types within SequenceNotStr
stainless-app[bot] 1582cc4
feat(api): Add fine_tuning.estimate_price api
stainless-app[bot] a1c8329
chore: add missing docstrings
stainless-app[bot] 96fc9b3
feat(api): api update
stainless-app[bot] 5341347
feat(api): api update
stainless-app[bot] 95cc672
chore: Update model list CLI to use api parameter for dedicated filte…
blainekasten 300c8ec
release: 2.0.0-alpha.10
stainless-app[bot] File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,3 +1,3 @@ | ||
| { | ||
| ".": "2.0.0-alpha.9" | ||
| ".": "2.0.0-alpha.10" | ||
| } |
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,4 +1,4 @@ | ||
| configured_endpoints: 43 | ||
| openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/togetherai%2Ftogetherai-1c6ce663fedf553574b97bea0a29eead80b3c8e508f5a8ef2a3e7694ad59c23c.yml | ||
| openapi_spec_hash: 02565e3bb15204f0b97e7d1a47557353 | ||
| config_hash: 87a5832ab2ecefe567d22108531232f5 | ||
| configured_endpoints: 44 | ||
| openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/togetherai%2Ftogetherai-291c169d09f5ccc52f1e20f6f239db136003f4735ebd82f14f10cfdf96bb88fd.yml | ||
| openapi_spec_hash: 241fba23e79ab8bcfb06c7781c01aa27 | ||
| config_hash: 9749f2f8998aa6b15452b2187ff675b9 |
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
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
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
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
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
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
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,4 +1,4 @@ | ||
| # File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details. | ||
|
|
||
| __title__ = "together" | ||
| __version__ = "2.0.0-alpha.9" # x-release-please-version | ||
| __version__ = "2.0.0-alpha.10" # x-release-please-version |
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
This file was deleted.
Oops, something went wrong.
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
Oops, something went wrong.
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.
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 whenUV_PYTHONis 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 withUV_PYTHON=3.14, the Pydantic v1 tests will incorrectly execute and fail since Pydantic v1 doesn't support Python 3.14.