diff options
author | abc <98614666+xtekky@users.noreply.github.com> | 2023-11-20 19:40:55 +0100 |
---|---|---|
committer | abc <98614666+xtekky@users.noreply.github.com> | 2023-11-20 19:40:55 +0100 |
commit | 9140541179e1c2fe855acf1c2743e1800fd5052e (patch) | |
tree | 774c460654335497ad272d14a6b5082717033651 /g4f/Provider/deprecated/FastGpt.py | |
parent | Merge pull request #1274 from hlohaus/webdriver (diff) | |
download | gpt4free-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 '')
-rw-r--r-- | g4f/Provider/deprecated/FastGpt.py | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/g4f/Provider/deprecated/FastGpt.py b/g4f/Provider/deprecated/FastGpt.py index ef69e892..3af8c213 100644 --- a/g4f/Provider/deprecated/FastGpt.py +++ b/g4f/Provider/deprecated/FastGpt.py @@ -69,9 +69,11 @@ class FastGpt(BaseProvider): try: if b'content' in line: line_json = json.loads(line.decode('utf-8').split('data: ')[1]) - if token := line_json['choices'][0]['delta'].get( + token = line_json['choices'][0]['delta'].get( 'content' - ): + ) + + if token: yield token except: continue
\ No newline at end of file |