Skip to content

Commit 7fd705d

Browse files
authored
Add temporary default values for CLI options
Set temporary default values for no-prompt-cache and no-speculative-decoding options.
1 parent 698207c commit 7fd705d

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

src/together/cli/api/endpoints.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -115,11 +115,13 @@ def endpoints(ctx: click.Context) -> None:
115115
@click.option(
116116
"--no-prompt-cache",
117117
is_flag=True,
118+
default=True, #temporary default value before configs fixed
118119
help="Disable the prompt cache for this endpoint",
119120
)
120121
@click.option(
121122
"--no-speculative-decoding",
122123
is_flag=True,
124+
default=True, #temporary default value before configs fixed
123125
help="Disable speculative decoding for this endpoint",
124126
)
125127
@click.option(

0 commit comments

Comments
 (0)