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: 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.
Copy file name to clipboardExpand all lines: src/runloop_api_client/types/gateway_config_view.py
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -19,7 +19,7 @@ class AuthMechanism(BaseModel):
19
19
20
20
classGatewayConfigView(BaseModel):
21
21
"""
22
-
A GatewayConfig defines a configuration for proxying API requests through the credential gateway. It specifies the target endpoint and how credentials should be applied.
22
+
A GatewayConfig defines a configuration for proxying API requests through the agent gateway. It specifies the target endpoint and how credentials should be applied.
0 commit comments