diff options
author | H Lohaus <hlohaus@users.noreply.github.com> | 2023-11-20 17:35:18 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-11-20 17:35:18 +0100 |
commit | a2b803a56c9721cf4a3f8a265b78a1333f79a496 (patch) | |
tree | f47749d3631264eb4cb1e859c9a25851dff80f98 | |
parent | Update GptGo.py (diff) | |
download | gpt4free-a2b803a56c9721cf4a3f8a265b78a1333f79a496.tar gpt4free-a2b803a56c9721cf4a3f8a265b78a1333f79a496.tar.gz gpt4free-a2b803a56c9721cf4a3f8a265b78a1333f79a496.tar.bz2 gpt4free-a2b803a56c9721cf4a3f8a265b78a1333f79a496.tar.lz gpt4free-a2b803a56c9721cf4a3f8a265b78a1333f79a496.tar.xz gpt4free-a2b803a56c9721cf4a3f8a265b78a1333f79a496.tar.zst gpt4free-a2b803a56c9721cf4a3f8a265b78a1333f79a496.zip |
-rw-r--r-- | g4f/Provider/AItianhu.py | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/g4f/Provider/AItianhu.py b/g4f/Provider/AItianhu.py index 05ee5a20..34187694 100644 --- a/g4f/Provider/AItianhu.py +++ b/g4f/Provider/AItianhu.py @@ -72,7 +72,8 @@ class AItianhu(AsyncGeneratorProvider): if "detail" not in line: raise RuntimeError(f"Response: {line}") - if content := line["detail"]["choices"][0]["delta"].get( + content = line["detail"]["choices"][0]["delta"].get( "content" - ): - yield content
\ No newline at end of file + ) + if content: + yield content |