diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/gpt_chat_cli/argparsing.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gpt_chat_cli/argparsing.py b/src/gpt_chat_cli/argparsing.py index 7869f69..b026af8 100644 --- a/src/gpt_chat_cli/argparsing.py +++ b/src/gpt_chat_cli/argparsing.py @@ -185,10 +185,10 @@ def parse_args() -> Arguments: "-k", "--max-tokens", type=int, - default=os.getenv(f'{GPT_CLI_ENV_PREFIX}MAX_TOKENS', 3072), + default=os.getenv(f'{GPT_CLI_ENV_PREFIX}MAX_TOKENS', 2048), help=( "The maximum number of tokens to generate in the chat completion. " - "Defaults to 3072." + "Defaults to 2048." ), ) |