diff options
author | egcash <85733533+egcash@users.noreply.github.com> | 2023-11-20 17:27:50 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-11-20 17:27:50 +0100 |
commit | 4a6bcef394190b69c236dfcdd9697361afd92b59 (patch) | |
tree | d6bdd6495f39d892d65b52052463eda3cec00fd1 | |
parent | ~ | (diff) | |
download | gpt4free-4a6bcef394190b69c236dfcdd9697361afd92b59.tar gpt4free-4a6bcef394190b69c236dfcdd9697361afd92b59.tar.gz gpt4free-4a6bcef394190b69c236dfcdd9697361afd92b59.tar.bz2 gpt4free-4a6bcef394190b69c236dfcdd9697361afd92b59.tar.lz gpt4free-4a6bcef394190b69c236dfcdd9697361afd92b59.tar.xz gpt4free-4a6bcef394190b69c236dfcdd9697361afd92b59.tar.zst gpt4free-4a6bcef394190b69c236dfcdd9697361afd92b59.zip |
-rw-r--r-- | g4f/Provider/GptGo.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/g4f/Provider/GptGo.py b/g4f/Provider/GptGo.py index ac3f7fe8..726c7a99 100644 --- a/g4f/Provider/GptGo.py +++ b/g4f/Provider/GptGo.py @@ -63,7 +63,7 @@ class GptGo(AsyncGeneratorProvider): if line["choices"][0]["finish_reason"] == "stop": break - content = line["choices"][0]["delta"].get("content"): + content = line["choices"][0]["delta"].get("content") if content: yield content @@ -79,4 +79,4 @@ class GptGo(AsyncGeneratorProvider): ("temperature", "float"), ] param = ", ".join([": ".join(p) for p in params]) - return f"g4f.provider.{cls.__name__} supports: ({param})"
\ No newline at end of file + return f"g4f.provider.{cls.__name__} supports: ({param})" |