summaryrefslogtreecommitdiffstats
path: root/g4f/Provider/AItianhu.py
diff options
context:
space:
mode:
authorabc <98614666+xtekky@users.noreply.github.com>2023-11-20 00:14:30 +0100
committerabc <98614666+xtekky@users.noreply.github.com>2023-11-20 00:14:30 +0100
commitd4c8f3e8d595c50890aafd3911a1da54a8080287 (patch)
treee90f3c323b4569055d09b319a296c1aefec04936 /g4f/Provider/AItianhu.py
parent~ | g4f `v-0.1.8.7` (diff)
downloadgpt4free-d4c8f3e8d595c50890aafd3911a1da54a8080287.tar
gpt4free-d4c8f3e8d595c50890aafd3911a1da54a8080287.tar.gz
gpt4free-d4c8f3e8d595c50890aafd3911a1da54a8080287.tar.bz2
gpt4free-d4c8f3e8d595c50890aafd3911a1da54a8080287.tar.lz
gpt4free-d4c8f3e8d595c50890aafd3911a1da54a8080287.tar.xz
gpt4free-d4c8f3e8d595c50890aafd3911a1da54a8080287.tar.zst
gpt4free-d4c8f3e8d595c50890aafd3911a1da54a8080287.zip
Diffstat (limited to 'g4f/Provider/AItianhu.py')
-rw-r--r--g4f/Provider/AItianhu.py7
1 files changed, 3 insertions, 4 deletions
diff --git a/g4f/Provider/AItianhu.py b/g4f/Provider/AItianhu.py
index 0a31e40b..fcf9a4fb 100644
--- a/g4f/Provider/AItianhu.py
+++ b/g4f/Provider/AItianhu.py
@@ -71,12 +71,11 @@ class AItianhu(AsyncGeneratorProvider):
if "detail" not in line:
raise RuntimeError(f"Response: {line}")
- if content := line["detail"]["choices"][0]["delta"].get(
- "content"
- ):
+
+ content = line["detail"]["choices"][0]["delta"].get("content")
+ if content:
yield content
-
@classmethod
@property
def params(cls):