diff options
author | Heiner Lohaus <heiner.lohaus@netformic.com> | 2023-08-24 21:32:22 +0200 |
---|---|---|
committer | Heiner Lohaus <heiner.lohaus@netformic.com> | 2023-08-24 21:32:22 +0200 |
commit | 69ca98ac85743edd76ac6ce49feb233cd5365099 (patch) | |
tree | 75f931bc48497ae9e8cfec5ed234574263c11381 /g4f/Provider/Acytoo.py | |
parent | Improve providers with tests (diff) | |
download | gpt4free-69ca98ac85743edd76ac6ce49feb233cd5365099.tar gpt4free-69ca98ac85743edd76ac6ce49feb233cd5365099.tar.gz gpt4free-69ca98ac85743edd76ac6ce49feb233cd5365099.tar.bz2 gpt4free-69ca98ac85743edd76ac6ce49feb233cd5365099.tar.lz gpt4free-69ca98ac85743edd76ac6ce49feb233cd5365099.tar.xz gpt4free-69ca98ac85743edd76ac6ce49feb233cd5365099.tar.zst gpt4free-69ca98ac85743edd76ac6ce49feb233cd5365099.zip |
Diffstat (limited to '')
-rw-r--r-- | g4f/Provider/Acytoo.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/g4f/Provider/Acytoo.py b/g4f/Provider/Acytoo.py index 2edd9efd..975e914b 100644 --- a/g4f/Provider/Acytoo.py +++ b/g4f/Provider/Acytoo.py @@ -7,12 +7,13 @@ from .base_provider import BaseProvider class Acytoo(BaseProvider): - url = "https://chat.acytoo.com/api/completions" + url = "https://chat.acytoo.com/" working = True supports_gpt_35_turbo = True - @staticmethod + @classmethod def create_completion( + cls, model: str, messages: list[dict[str, str]], stream: bool, @@ -21,8 +22,7 @@ class Acytoo(BaseProvider): headers = _create_header() payload = _create_payload(messages, kwargs.get('temperature', 0.5)) - url = "https://chat.acytoo.com/api/completions" - response = requests.post(url=url, headers=headers, json=payload) + response = requests.post("{cls.url}api/completions", headers=headers, json=payload) response.raise_for_status() response.encoding = "utf-8" yield response.text |