summaryrefslogtreecommitdiffstats
path: root/g4f/Provider/deprecated/Equing.py
diff options
context:
space:
mode:
authorabc <98614666+xtekky@users.noreply.github.com>2023-11-20 19:40:55 +0100
committerabc <98614666+xtekky@users.noreply.github.com>2023-11-20 19:40:55 +0100
commit9140541179e1c2fe855acf1c2743e1800fd5052e (patch)
tree774c460654335497ad272d14a6b5082717033651 /g4f/Provider/deprecated/Equing.py
parentMerge pull request #1274 from hlohaus/webdriver (diff)
downloadgpt4free-9140541179e1c2fe855acf1c2743e1800fd5052e.tar
gpt4free-9140541179e1c2fe855acf1c2743e1800fd5052e.tar.gz
gpt4free-9140541179e1c2fe855acf1c2743e1800fd5052e.tar.bz2
gpt4free-9140541179e1c2fe855acf1c2743e1800fd5052e.tar.lz
gpt4free-9140541179e1c2fe855acf1c2743e1800fd5052e.tar.xz
gpt4free-9140541179e1c2fe855acf1c2743e1800fd5052e.tar.zst
gpt4free-9140541179e1c2fe855acf1c2743e1800fd5052e.zip
Diffstat (limited to 'g4f/Provider/deprecated/Equing.py')
-rw-r--r--g4f/Provider/deprecated/Equing.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/g4f/Provider/deprecated/Equing.py b/g4f/Provider/deprecated/Equing.py
index 076b5ac5..9f510e50 100644
--- a/g4f/Provider/deprecated/Equing.py
+++ b/g4f/Provider/deprecated/Equing.py
@@ -65,5 +65,7 @@ class Equing(BaseProvider):
if line:
if b'content' in line:
line_json = json.loads(line.decode('utf-8').split('data: ')[1])
- if token := line_json['choices'][0]['delta'].get('content'):
+
+ token = line_json['choices'][0]['delta'].get('content')
+ if token:
yield token \ No newline at end of file