diff options
Diffstat (limited to 'g4f/Provider/Pizzagpt.py')
-rw-r--r-- | g4f/Provider/Pizzagpt.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/g4f/Provider/Pizzagpt.py b/g4f/Provider/Pizzagpt.py index 860aef80..6513bd34 100644 --- a/g4f/Provider/Pizzagpt.py +++ b/g4f/Provider/Pizzagpt.py @@ -12,7 +12,6 @@ class Pizzagpt(AsyncGeneratorProvider, ProviderModelMixin): url = "https://www.pizzagpt.it" api_endpoint = "/api/chatx-completion" working = True - supports_gpt_4 = True default_model = 'gpt-4o-mini' @classmethod @@ -47,4 +46,4 @@ class Pizzagpt(AsyncGeneratorProvider, ProviderModelMixin): response.raise_for_status() response_json = await response.json() content = response_json.get("answer", {}).get("content", "") - yield content
\ No newline at end of file + yield content |