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/together/resources/endpoints.py
+11-11Lines changed: 11 additions & 11 deletions
Original file line number
Diff line number
Diff line change
@@ -76,7 +76,7 @@ def create(
76
76
disable_speculative_decoding: bool=True,
77
77
state: Literal["STARTED", "STOPPED"] ="STARTED",
78
78
inactive_timeout: Optional[int] =None,
79
-
user_specified_avzone: Optional[str] =None,
79
+
availability_zone: Optional[str] =None,
80
80
) ->DedicatedEndpoint:
81
81
"""
82
82
Create a new dedicated endpoint.
@@ -91,7 +91,7 @@ def create(
91
91
disable_speculative_decoding (bool, optional): Whether to disable speculative decoding. Defaults to False.
92
92
state (str, optional): The desired state of the endpoint. Defaults to "STARTED".
93
93
inactive_timeout (int, optional): The number of minutes of inactivity after which the endpoint will be automatically stopped. Set to 0 to disable automatic timeout.
94
-
user_specified_avzone (str, optional): Start endpoint in specified availability zone (e.g., us-central-4b).
94
+
availability_zone (str, optional): Start endpoint in specified availability zone (e.g., us-central-4b).
95
95
96
96
Returns:
97
97
DedicatedEndpoint: Object containing endpoint information
0 commit comments