diff options
author | Heiner Lohaus <heiner@lohaus.eu> | 2023-10-04 07:20:51 +0200 |
---|---|---|
committer | Heiner Lohaus <heiner@lohaus.eu> | 2023-10-04 07:20:51 +0200 |
commit | 6a61cf811655fa87dbcb196025cc0b6040502293 (patch) | |
tree | 0e299a24d90095013854d04f9bf13617eebb8f6c /g4f/Provider/Forefront.py | |
parent | Use custom user dir (diff) | |
download | gpt4free-6a61cf811655fa87dbcb196025cc0b6040502293.tar gpt4free-6a61cf811655fa87dbcb196025cc0b6040502293.tar.gz gpt4free-6a61cf811655fa87dbcb196025cc0b6040502293.tar.bz2 gpt4free-6a61cf811655fa87dbcb196025cc0b6040502293.tar.lz gpt4free-6a61cf811655fa87dbcb196025cc0b6040502293.tar.xz gpt4free-6a61cf811655fa87dbcb196025cc0b6040502293.tar.zst gpt4free-6a61cf811655fa87dbcb196025cc0b6040502293.zip |
Diffstat (limited to 'g4f/Provider/Forefront.py')
-rw-r--r-- | g4f/Provider/Forefront.py | 40 |
1 files changed, 0 insertions, 40 deletions
diff --git a/g4f/Provider/Forefront.py b/g4f/Provider/Forefront.py deleted file mode 100644 index 8f51fb57..00000000 --- a/g4f/Provider/Forefront.py +++ /dev/null @@ -1,40 +0,0 @@ -from __future__ import annotations - -import json - -import requests - -from ..typing import Any, CreateResult -from .base_provider import BaseProvider - - -class Forefront(BaseProvider): - url = "https://forefront.com" - supports_stream = True - supports_gpt_35_turbo = True - - @staticmethod - def create_completion( - model: str, - messages: list[dict[str, str]], - stream: bool, **kwargs: Any) -> CreateResult: - - json_data = { - "text" : messages[-1]["content"], - "action" : "noauth", - "id" : "", - "parentId" : "", - "workspaceId" : "", - "messagePersona": "607e41fe-95be-497e-8e97-010a59b2e2c0", - "model" : "gpt-4", - "messages" : messages[:-1] if len(messages) > 1 else [], - "internetMode" : "auto", - } - - response = requests.post("https://streaming.tenant-forefront-default.knative.chi.coreweave.com/free-chat", - json=json_data, stream=True) - - response.raise_for_status() - for token in response.iter_lines(): - if b"delta" in token: - yield json.loads(token.decode().split("data: ")[1])["delta"] |