Config: Add option to force streaming off
Many APIs automatically ask for request streaming without giving the user the option to turn it off. Therefore, give the user more freedom by giving a server-side kill switch. Signed-off-by: kingbri <bdashore3@proton.me>
This commit is contained in:
parent
d0027bce32
commit
58590a6c57
3 changed files with 19 additions and 2 deletions
|
|
@ -135,3 +135,8 @@ def add_developer_args(parser: argparse.ArgumentParser):
|
|||
developer_group.add_argument(
|
||||
"--unsafe-launch", type=str_to_bool, help="Skip Exllamav2 version check"
|
||||
)
|
||||
developer_group.add_argument(
|
||||
"--disable-request-streaming",
|
||||
type=str_to_bool,
|
||||
help="Disables API request streaming",
|
||||
)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue