You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+13Lines changed: 13 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,18 @@
1
1
# Changelog
2
2
3
+
## 1.10.2 (2026-02-26)
4
+
5
+
Full Changelog: [v1.10.1...v1.10.2](https://github.com/runloopai/api-client-python/compare/v1.10.1...v1.10.2)
6
+
7
+
### Bug Fixes
8
+
9
+
* remove beta docs from gateway-config ([#7677](https://github.com/runloopai/api-client-python/issues/7677)) ([0c64614](https://github.com/runloopai/api-client-python/commit/0c64614708063bd267e2dabde810ccb56914d088))
10
+
11
+
12
+
### Chores
13
+
14
+
* rename AI Gateway to Agent Gateway ([#7687](https://github.com/runloopai/api-client-python/issues/7687)) ([6e96bda](https://github.com/runloopai/api-client-python/commit/6e96bda273b1a49b4c0efd731e64761675919157))
15
+
3
16
## 1.10.1 (2026-02-26)
4
17
5
18
Full Changelog: [v1.10.0...v1.10.1](https://github.com/runloopai/api-client-python/compare/v1.10.0...v1.10.1)
Copy file name to clipboardExpand all lines: src/runloop_api_client/types/devbox_create_params.py
+6-6Lines changed: 6 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -38,12 +38,12 @@ class DevboxBaseCreateParams(TypedDict, total=False):
38
38
"""Map of paths and file contents to write before setup. Use mounts instead."""
39
39
40
40
gateways: Optional[Dict[str, Gateways]]
41
-
"""[Beta] (Optional) Gateway specifications for credential proxying.
41
+
"""(Optional) Agent gateway specifications for credential proxying.
42
42
43
-
Map key is the environment variable prefix (e.g., 'GWS_ANTHROPIC'). The gateway
44
-
will proxy requests to external APIs using the specified credential without
45
-
exposing the real API key. Example: {'GWS_ANTHROPIC': {'gateway': 'anthropic',
46
-
'secret': 'my_claude_key'}}
43
+
Map key is the environment variable prefix (e.g., 'GWS_ANTHROPIC'). The agent
44
+
gateway will proxy requests to external APIs using the specified credential
45
+
without exposing the real API key. Example: {'GWS_ANTHROPIC': {'gateway':
46
+
'anthropic', 'secret': 'my_claude_key'}}
47
47
"""
48
48
49
49
launch_parameters: Optional[LaunchParameters]
@@ -112,7 +112,7 @@ class DevboxCreateParams(DevboxBaseCreateParams, total=False):
112
112
113
113
classGateways(TypedDict, total=False):
114
114
"""
115
-
[Beta] GatewaySpec links a gateway configuration to a secret for credential proxying in a devbox. The gateway will proxy requests to external APIs using the specified credential without exposing the real API key.
115
+
GatewaySpec links an agent gateway configuration to a secret for credential proxying in a devbox. The agent gateway will proxy requests to external APIs using the specified credential without exposing the real API key.
0 commit comments