Skip to content

Commit ab2920d

Browse files
release: 2.0.0-alpha.25 (#64)
* chore: update OpenAPI spec and rebuild SDKs * codegen metadata * codegen metadata * release: 2.0.0-alpha.25 --------- Co-authored-by: stainless-app[bot] <142633134+stainless-app[bot]@users.noreply.github.com>
1 parent 30d1282 commit ab2920d

File tree

9 files changed

+41
-5
lines changed

9 files changed

+41
-5
lines changed

.release-please-manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
".": "2.0.0-alpha.24"
2+
".": "2.0.0-alpha.25"
33
}

.stats.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
configured_endpoints: 35
2-
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/replicate%2Freplicate-client-866189e1aee643ae0367afba800d0e16239121deb5693a90ede9240b4053e9b3.yml
3-
openapi_spec_hash: 66b891957e455776e5bec76b033ec8e8
2+
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/replicate%2Freplicate-client-87c7c57bd75c54990c679c9e87d009851cdff572815a55d1b6ee4d4ee20adaa1.yml
3+
openapi_spec_hash: d987f14befa536004eece7b49caad993
44
config_hash: b1b4f5d24ba07b4667ffe7b9dec081e3

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
# Changelog
22

3+
## 2.0.0-alpha.25 (2025-09-15)
4+
5+
Full Changelog: [v2.0.0-alpha.24...v2.0.0-alpha.25](https://github.com/replicate/replicate-python-stainless/compare/v2.0.0-alpha.24...v2.0.0-alpha.25)
6+
7+
### Chores
8+
9+
* update OpenAPI spec and rebuild SDKs ([5e7effd](https://github.com/replicate/replicate-python-stainless/commit/5e7effd94a0e68373d91c57205f639dae022efc4))
10+
311
## 2.0.0-alpha.24 (2025-09-11)
412

513
Full Changelog: [v2.0.0-alpha.23...v2.0.0-alpha.24](https://github.com/replicate/replicate-python-stainless/compare/v2.0.0-alpha.23...v2.0.0-alpha.24)

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "replicate"
3-
version = "2.0.0-alpha.24"
3+
version = "2.0.0-alpha.25"
44
description = "The official Python library for the replicate API"
55
dynamic = ["readme"]
66
license = "Apache-2.0"

src/replicate/_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
# File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
22

33
__title__ = "replicate"
4-
__version__ = "2.0.0-alpha.24" # x-release-please-version
4+
__version__ = "2.0.0-alpha.25" # x-release-please-version

src/replicate/types/collection_get_response.py

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,13 @@ class Model(BaseModel):
2323
github_url: Optional[str] = None
2424
"""A URL for the model's source code on GitHub"""
2525

26+
is_official: Optional[bool] = None
27+
"""Boolean indicating whether the model is officially maintained by Replicate.
28+
29+
Official models are always on, have stable API interfaces, and predictable
30+
pricing.
31+
"""
32+
2633
latest_version: Optional[VersionGetResponse] = None
2734
"""The model's latest version"""
2835

src/replicate/types/model_create_response.py

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,13 @@ class ModelCreateResponse(BaseModel):
2222
github_url: Optional[str] = None
2323
"""A URL for the model's source code on GitHub"""
2424

25+
is_official: Optional[bool] = None
26+
"""Boolean indicating whether the model is officially maintained by Replicate.
27+
28+
Official models are always on, have stable API interfaces, and predictable
29+
pricing.
30+
"""
31+
2532
latest_version: Optional[VersionGetResponse] = None
2633
"""The model's latest version"""
2734

src/replicate/types/model_get_response.py

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,13 @@ class ModelGetResponse(BaseModel):
2222
github_url: Optional[str] = None
2323
"""A URL for the model's source code on GitHub"""
2424

25+
is_official: Optional[bool] = None
26+
"""Boolean indicating whether the model is officially maintained by Replicate.
27+
28+
Official models are always on, have stable API interfaces, and predictable
29+
pricing.
30+
"""
31+
2532
latest_version: Optional[VersionGetResponse] = None
2633
"""The model's latest version"""
2734

src/replicate/types/model_list_response.py

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,13 @@ class ModelListResponse(BaseModel):
2222
github_url: Optional[str] = None
2323
"""A URL for the model's source code on GitHub"""
2424

25+
is_official: Optional[bool] = None
26+
"""Boolean indicating whether the model is officially maintained by Replicate.
27+
28+
Official models are always on, have stable API interfaces, and predictable
29+
pricing.
30+
"""
31+
2532
latest_version: Optional[VersionGetResponse] = None
2633
"""The model's latest version"""
2734

0 commit comments

Comments
 (0)