Skip to content

Commit dc5fbce

Browse files
committed
removed all indications of mine is false since we don't support it
1 parent 0b802ef commit dc5fbce

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/together/cli/api/endpoints.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -341,7 +341,7 @@ def delete(client: Together, endpoint_id: str) -> None:
341341
"--mine",
342342
type=click.BOOL,
343343
default=None,
344-
help="true (only mine), false (exclude mine), default=all",
344+
help="true (only mine), default=all",
345345
)
346346
@click.option(
347347
"--usage-type",

src/together/resources/endpoints.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ def list(
2424
Args:
2525
type (str, optional): Filter endpoints by endpoint type ("dedicated" or "serverless"). Defaults to None.
2626
usage_type (str, optional): Filter endpoints by usage type ("on-demand" or "reserved"). Defaults to None.
27-
mine (bool, optional): If True, return only endpoints owned by the caller. If False, return endpoints not owned by the caller. Defaults to None.
27+
mine (bool, optional): If True, return only endpoints owned by the caller. Defaults to None.
2828
2929
Returns:
3030
List[ListEndpoint]: List of endpoint objects
@@ -290,7 +290,7 @@ async def list(
290290
Args:
291291
type (str, optional): Filter endpoints by type ("dedicated" or "serverless"). Defaults to None.
292292
usage_type (str, optional): Filter endpoints by usage type ("on-demand" or "reserved"). Defaults to None.
293-
mine (bool, optional): If True, return only endpoints owned by the caller. If False, return endpoints not owned by the caller. Defaults to None.
293+
mine (bool, optional): If True, return only endpoints owned by the caller. Defaults to None.
294294
295295
Returns:
296296
List[ListEndpoint]: List of endpoint objects

0 commit comments

Comments
 (0)