Skip to content
Open
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 @@
{
".": "1.16.0"
".": "1.16.1"
}
4 changes: 2 additions & 2 deletions .stats.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
configured_endpoints: 109
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/runloop-ai%2Frunloop-b0d4f639559e78ee64d536a35464cff1ef1928e92c2a32a0384dc887da662ef3.yml
openapi_spec_hash: a822f02fec32ae89e2bc6a6f95b8845f
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/runloop-ai%2Frunloop-278ae77dcf804cd28eda8546ee0bc6ac95f02cdf571e89f257166913b7f4099a.yml
openapi_spec_hash: a29714be5cdaad5ed4f05bd45a5377a1
config_hash: ecb1ff09d29b565ed1452b5e0362e64d
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Changelog

## 1.16.1 (2026-04-06)

Full Changelog: [v1.16.0...v1.16.1](https://github.com/runloopai/api-client-python/compare/v1.16.0...v1.16.1)

### Chores

* Cleanup remaining junk left over from browser and computer use ([#8553](https://github.com/runloopai/api-client-python/issues/8553)) ([ddccee2](https://github.com/runloopai/api-client-python/commit/ddccee245aaea07df9d7b6a9b307cb9cd77878cb))

## 1.16.0 (2026-04-03)

Full Changelog: [v1.15.0...v1.16.0](https://github.com/runloopai/api-client-python/compare/v1.15.0...v1.16.0)
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 = "runloop_api_client"
version = "1.16.0"
version = "1.16.1"
description = "The official Python library for the runloop API"
dynamic = ["readme"]
license = "MIT"
Expand Down
2 changes: 1 addition & 1 deletion src/runloop_api_client/_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__ = "runloop_api_client"
__version__ = "1.16.0" # x-release-please-version
__version__ = "1.16.1" # x-release-please-version
4 changes: 1 addition & 3 deletions src/runloop_api_client/types/blueprint_view.py
Original file line number Diff line number Diff line change
Expand Up @@ -78,9 +78,7 @@ class BlueprintView(BaseModel):
Services can be explicitly started when creating a Devbox.
"""

devbox_capabilities: Optional[List[Literal["unknown", "computer_usage", "browser_usage", "docker_in_docker"]]] = (
None
)
devbox_capabilities: Optional[List[Literal["unknown", "docker_in_docker"]]] = None
"""Capabilities that will be available on Devbox."""

failure_reason: Optional[Literal["out_of_memory", "out_of_disk", "build_failed"]] = None
Expand Down
8 changes: 2 additions & 6 deletions src/runloop_api_client/types/devbox_view.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,12 +56,8 @@ class DevboxView(BaseModel):
id: str
"""The ID of the Devbox."""

capabilities: List[Literal["unknown", "computer_usage", "browser_usage", "docker_in_docker"]]
"""A list of capability groups this devbox has access to.

This allows devboxes to be compatible with certain tools sets like computer
usage APIs.
"""
capabilities: List[Literal["unknown", "docker_in_docker"]]
"""A list of capability groups this devbox has access to."""

create_time_ms: int
"""Creation time of the Devbox (Unix timestamp milliseconds)."""
Expand Down
Loading