diff options
Diffstat (limited to 'g4f/Provider/ChatGpt.py')
-rw-r--r-- | g4f/Provider/ChatGpt.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/g4f/Provider/ChatGpt.py b/g4f/Provider/ChatGpt.py index 9304e4a0..02bbbcc4 100644 --- a/g4f/Provider/ChatGpt.py +++ b/g4f/Provider/ChatGpt.py @@ -210,7 +210,6 @@ class ChatGpt(AbstractProvider, ProviderModelMixin): for line in response.iter_lines(): if line: decoded_line = line.decode() - print(decoded_line) if decoded_line.startswith('data:'): json_string = decoded_line[6:].strip() |