Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
".": "2.0.0-alpha.24"
".": "2.0.0-alpha.25"
}
4 changes: 2 additions & 2 deletions .stats.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
configured_endpoints: 35
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/replicate%2Freplicate-client-866189e1aee643ae0367afba800d0e16239121deb5693a90ede9240b4053e9b3.yml
openapi_spec_hash: 66b891957e455776e5bec76b033ec8e8
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/replicate%2Freplicate-client-87c7c57bd75c54990c679c9e87d009851cdff572815a55d1b6ee4d4ee20adaa1.yml
openapi_spec_hash: d987f14befa536004eece7b49caad993
config_hash: b1b4f5d24ba07b4667ffe7b9dec081e3
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Changelog

## 2.0.0-alpha.25 (2025-09-15)

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)

### Chores

* update OpenAPI spec and rebuild SDKs ([5e7effd](https://github.com/replicate/replicate-python-stainless/commit/5e7effd94a0e68373d91c57205f639dae022efc4))

## 2.0.0-alpha.24 (2025-09-11)

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)
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "replicate"
version = "2.0.0-alpha.24"
version = "2.0.0-alpha.25"
description = "The official Python library for the replicate API"
dynamic = ["readme"]
license = "Apache-2.0"
Expand Down
2 changes: 1 addition & 1 deletion src/replicate/_version.py
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__ = "replicate"
__version__ = "2.0.0-alpha.24" # x-release-please-version
__version__ = "2.0.0-alpha.25" # x-release-please-version
7 changes: 7 additions & 0 deletions src/replicate/types/collection_get_response.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,13 @@ class Model(BaseModel):
github_url: Optional[str] = None
"""A URL for the model's source code on GitHub"""

is_official: Optional[bool] = None
"""Boolean indicating whether the model is officially maintained by Replicate.

Official models are always on, have stable API interfaces, and predictable
pricing.
"""

latest_version: Optional[VersionGetResponse] = None
"""The model's latest version"""

Expand Down
7 changes: 7 additions & 0 deletions src/replicate/types/model_create_response.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,13 @@ class ModelCreateResponse(BaseModel):
github_url: Optional[str] = None
"""A URL for the model's source code on GitHub"""

is_official: Optional[bool] = None
"""Boolean indicating whether the model is officially maintained by Replicate.

Official models are always on, have stable API interfaces, and predictable
pricing.
"""

latest_version: Optional[VersionGetResponse] = None
"""The model's latest version"""

Expand Down
7 changes: 7 additions & 0 deletions src/replicate/types/model_get_response.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,13 @@ class ModelGetResponse(BaseModel):
github_url: Optional[str] = None
"""A URL for the model's source code on GitHub"""

is_official: Optional[bool] = None
"""Boolean indicating whether the model is officially maintained by Replicate.

Official models are always on, have stable API interfaces, and predictable
pricing.
"""

latest_version: Optional[VersionGetResponse] = None
"""The model's latest version"""

Expand Down
7 changes: 7 additions & 0 deletions src/replicate/types/model_list_response.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,13 @@ class ModelListResponse(BaseModel):
github_url: Optional[str] = None
"""A URL for the model's source code on GitHub"""

is_official: Optional[bool] = None
"""Boolean indicating whether the model is officially maintained by Replicate.

Official models are always on, have stable API interfaces, and predictable
pricing.
"""

latest_version: Optional[VersionGetResponse] = None
"""The model's latest version"""

Expand Down