diff options
author | Tekky <98614666+xtekky@users.noreply.github.com> | 2023-09-26 15:06:06 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-09-26 15:06:06 +0200 |
commit | 41af8aff6ce09be4131d50e0e24b8622628441fc (patch) | |
tree | 1519231f3513b57acf2548b77f1fc89e092fc4cb /g4f/Provider/ChatgptDuo.py | |
parent | ~ (diff) | |
parent | Add ChatgptDuo and Aibn Provider (diff) | |
download | gpt4free-41af8aff6ce09be4131d50e0e24b8622628441fc.tar gpt4free-41af8aff6ce09be4131d50e0e24b8622628441fc.tar.gz gpt4free-41af8aff6ce09be4131d50e0e24b8622628441fc.tar.bz2 gpt4free-41af8aff6ce09be4131d50e0e24b8622628441fc.tar.lz gpt4free-41af8aff6ce09be4131d50e0e24b8622628441fc.tar.xz gpt4free-41af8aff6ce09be4131d50e0e24b8622628441fc.tar.zst gpt4free-41af8aff6ce09be4131d50e0e24b8622628441fc.zip |
Diffstat (limited to '')
-rw-r--r-- | g4f/Provider/ChatgptDuo.py | 51 |
1 files changed, 51 insertions, 0 deletions
diff --git a/g4f/Provider/ChatgptDuo.py b/g4f/Provider/ChatgptDuo.py new file mode 100644 index 00000000..07f4c16c --- /dev/null +++ b/g4f/Provider/ChatgptDuo.py @@ -0,0 +1,51 @@ +from __future__ import annotations + +from g4f.requests import AsyncSession +from .base_provider import AsyncProvider, format_prompt + + +class ChatgptDuo(AsyncProvider): + url = "https://chatgptduo.com" + supports_gpt_35_turbo = True + working = True + + @classmethod + async def create_async( + cls, + model: str, + messages: list[dict[str, str]], + **kwargs + ) -> str: + async with AsyncSession(impersonate="chrome107") as session: + prompt = format_prompt(messages), + data = { + "prompt": prompt, + "search": prompt, + "purpose": "ask", + } + async with session.post(f"{cls.url}/", data=data) as response: + response.raise_for_status() + data = await response.json() + + cls._sources = [{ + "title": source["title"], + "url": source["link"], + "snippet": source["snippet"] + } for source in data["results"]] + + return data["answer"] + + @classmethod + def get_sources(cls): + return cls._sources + + @classmethod + @property + def params(cls): + params = [ + ("model", "str"), + ("messages", "list[dict[str, str]]"), + ("stream", "bool"), + ] + param = ", ".join([": ".join(p) for p in params]) + return f"g4f.provider.{cls.__name__} supports: ({param})"
\ No newline at end of file |