summaryrefslogtreecommitdiffstats
path: root/g4f/Provider/deprecated/Vitalentum.py
diff options
context:
space:
mode:
Diffstat (limited to 'g4f/Provider/deprecated/Vitalentum.py')
-rw-r--r--g4f/Provider/deprecated/Vitalentum.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/g4f/Provider/deprecated/Vitalentum.py b/g4f/Provider/deprecated/Vitalentum.py
index 13160d94..8f466a52 100644
--- a/g4f/Provider/deprecated/Vitalentum.py
+++ b/g4f/Provider/deprecated/Vitalentum.py
@@ -49,5 +49,7 @@ class Vitalentum(AsyncGeneratorProvider):
if line.startswith("data: [DONE]"):
break
line = json.loads(line[6:-1])
- if content := line["choices"][0]["delta"].get("content"):
+ content = line["choices"][0]["delta"].get("content")
+
+ if content:
yield content \ No newline at end of file