summaryrefslogtreecommitdiffstats
path: root/g4f/Provider/Equing.py
diff options
context:
space:
mode:
Diffstat (limited to 'g4f/Provider/Equing.py')
-rw-r--r--g4f/Provider/Equing.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/g4f/Provider/Equing.py b/g4f/Provider/Equing.py
index bcf6cff9..90c865d9 100644
--- a/g4f/Provider/Equing.py
+++ b/g4f/Provider/Equing.py
@@ -53,6 +53,9 @@ class Equing(ABC):
response = requests.post('https://next.eqing.tech/api/openai/v1/chat/completions',
headers=headers, json=json_data, stream=stream)
+ if not stream:
+ yield response.json()["choices"][0]["message"]["content"]
+ return
for line in response.iter_content(chunk_size=1024):
if line: