aboutsummaryrefslogtreecommitdiff
path: root/src/gpt_chat_cli/gcli.py
diff options
context:
space:
mode:
authorflu0r1ne <flu0r1ne@flu0r1ne.net>2023-05-04 20:11:38 -0500
committerflu0r1ne <flu0r1ne@flu0r1ne.net>2023-05-04 20:11:38 -0500
commit2c93a4b99cd5bd3de20d9ed1efe115fe277da96c (patch)
tree29b8eddff7fa61d147c133054a12e892a89e4722 /src/gpt_chat_cli/gcli.py
parentb826de29835ece7267637b395273833b58df037b (diff)
downloadgpt-chat-cli-2c93a4b99cd5bd3de20d9ed1efe115fe277da96c.tar.xz
gpt-chat-cli-2c93a4b99cd5bd3de20d9ed1efe115fe277da96c.zip
Add README
Diffstat (limited to 'src/gpt_chat_cli/gcli.py')
-rw-r--r--src/gpt_chat_cli/gcli.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gpt_chat_cli/gcli.py b/src/gpt_chat_cli/gcli.py
index ded6d6c..dd7dbbb 100644
--- a/src/gpt_chat_cli/gcli.py
+++ b/src/gpt_chat_cli/gcli.py
@@ -105,7 +105,7 @@ def print_streamed_response(args : argparse.Namespace, completion : OpenAIChatRe
if not prompt_printed and ADORNMENTS:
res_indicator = '' if N_COMPLETIONS == 1 else \
- f' {display_idx + 1}/{n_completions}'
+ f' {display_idx + 1}/{N_COMPLETIONS}'
PROMPT = f'[{COLOR_CODE.GREEN}{update.model}{COLOR_CODE.RESET}{COLOR_CODE.RED}{res_indicator}{COLOR_CODE.RESET}]'
prompt_printed = True
print(PROMPT, end=' ', flush=True)