From 43a0b0746969e1856369b1b28d7a519c8b3fbce6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Florian=20Ho=CC=88nicke?= Date: Tue, 11 Apr 2023 00:04:38 +0200 Subject: [PATCH] refactor: logs --- src/gpt.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gpt.py b/src/gpt.py index adc299c..7af6da8 100644 --- a/src/gpt.py +++ b/src/gpt.py @@ -112,7 +112,7 @@ class _GPTConversation: except (RateLimitError, Timeout, ConnectionError, GenerationTimeoutError) as e: print(e) - print('retrying, be aware that this affects the cost calculation') + print('retrying, be aware that this might affect the cost calculation') sleep(3) continue chars_prompt = sum(len(prompt[1]) for prompt in prompt_list)