Skip to content

Commit 501de0b

Browse files
feat(devbox): default to x86 arch
1 parent f094bf7 commit 501de0b

3 files changed

Lines changed: 4 additions & 4 deletions

File tree

.stats.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
configured_endpoints: 97
2-
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/runloop-ai%2Frunloop-b92a4ee1d2c5382b0d77ec6a16e2e03b79bfd0a08cd75e28ee219350d5b6c5c6.yml
3-
openapi_spec_hash: 20d89d072b105d18e5bb8f73adb75063
2+
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/runloop-ai%2Frunloop-f2df3524e4b99c38b634c334d098aa2c7d543d5ea0f49c4dd8f4d92723b81b94.yml
3+
openapi_spec_hash: c377abec5716d1d6c5b01a527a5bfdfb
44
config_hash: 2363f563f42501d2b1587a4f64bdccaf

src/runloop_api_client/types/shared/launch_parameters.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ class LaunchParameters(BaseModel):
2525
"""
2626

2727
architecture: Optional[Literal["x86_64", "arm64"]] = None
28-
"""The target architecture for the Devbox. If unset, defaults to arm64."""
28+
"""The target architecture for the Devbox. If unset, defaults to x86_64."""
2929

3030
available_ports: Optional[List[int]] = None
3131
"""A list of ports to make available on the Devbox.

src/runloop_api_client/types/shared_params/launch_parameters.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ class LaunchParameters(TypedDict, total=False):
2727
"""
2828

2929
architecture: Optional[Literal["x86_64", "arm64"]]
30-
"""The target architecture for the Devbox. If unset, defaults to arm64."""
30+
"""The target architecture for the Devbox. If unset, defaults to x86_64."""
3131

3232
available_ports: Optional[Iterable[int]]
3333
"""A list of ports to make available on the Devbox.

0 commit comments

Comments
 (0)