diff options
author | AndPim4912 <52836885+AndPim4912@users.noreply.github.com> | 2023-10-23 14:10:28 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-10-23 14:10:28 +0200 |
commit | 8d7ad98fcb314453c01f6dcd4bfe59016efd78ce (patch) | |
tree | 4d39804e1aa1724560e1688f0b6d4c124b9771c7 /g4f/Provider/GptGod.py | |
parent | Refactor API initialization to accept a list of ignored providers. (diff) | |
parent | Debug config in api (diff) | |
download | gpt4free-8d7ad98fcb314453c01f6dcd4bfe59016efd78ce.tar gpt4free-8d7ad98fcb314453c01f6dcd4bfe59016efd78ce.tar.gz gpt4free-8d7ad98fcb314453c01f6dcd4bfe59016efd78ce.tar.bz2 gpt4free-8d7ad98fcb314453c01f6dcd4bfe59016efd78ce.tar.lz gpt4free-8d7ad98fcb314453c01f6dcd4bfe59016efd78ce.tar.xz gpt4free-8d7ad98fcb314453c01f6dcd4bfe59016efd78ce.tar.zst gpt4free-8d7ad98fcb314453c01f6dcd4bfe59016efd78ce.zip |
Diffstat (limited to 'g4f/Provider/GptGod.py')
-rw-r--r-- | g4f/Provider/GptGod.py | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/g4f/Provider/GptGod.py b/g4f/Provider/GptGod.py index 060500a9..8a575746 100644 --- a/g4f/Provider/GptGod.py +++ b/g4f/Provider/GptGod.py @@ -33,7 +33,7 @@ class GptGod(AsyncGeneratorProvider): "Pragma": "no-cache", "Cache-Control": "no-cache", } - + async with ClientSession(headers=headers) as session: prompt = format_prompt(messages) data = { @@ -45,12 +45,11 @@ class GptGod(AsyncGeneratorProvider): event = None async for line in response.content: print(line) - + if line.startswith(b'event: '): event = line[7:-1] elif event == b"data" and line.startswith(b"data: "): - data = json.loads(line[6:-1]) - if data: + if data := json.loads(line[6:-1]): yield data elif event == b"done": break
\ No newline at end of file |