diff options
author | kqlio67 <kqlio67@users.noreply.github.com> | 2024-09-25 10:44:23 +0200 |
---|---|---|
committer | kqlio67 <kqlio67@users.noreply.github.com> | 2024-09-25 10:44:23 +0200 |
commit | ec4e25073b5357a1213bfe00a93a21b5b6652bea (patch) | |
tree | c7cfa751ae9604d0bc05e42661492f934a2d333d /g4f/Provider/deprecated/ChatgptDuo.py | |
parent | feat(g4f/Provider/HuggingChat.): add Qwen2.5-72B model and alias (diff) | |
download | gpt4free-ec4e25073b5357a1213bfe00a93a21b5b6652bea.tar gpt4free-ec4e25073b5357a1213bfe00a93a21b5b6652bea.tar.gz gpt4free-ec4e25073b5357a1213bfe00a93a21b5b6652bea.tar.bz2 gpt4free-ec4e25073b5357a1213bfe00a93a21b5b6652bea.tar.lz gpt4free-ec4e25073b5357a1213bfe00a93a21b5b6652bea.tar.xz gpt4free-ec4e25073b5357a1213bfe00a93a21b5b6652bea.tar.zst gpt4free-ec4e25073b5357a1213bfe00a93a21b5b6652bea.zip |
Diffstat (limited to 'g4f/Provider/deprecated/ChatgptDuo.py')
-rw-r--r-- | g4f/Provider/deprecated/ChatgptDuo.py | 47 |
1 files changed, 47 insertions, 0 deletions
diff --git a/g4f/Provider/deprecated/ChatgptDuo.py b/g4f/Provider/deprecated/ChatgptDuo.py new file mode 100644 index 00000000..bd9e195d --- /dev/null +++ b/g4f/Provider/deprecated/ChatgptDuo.py @@ -0,0 +1,47 @@ +from __future__ import annotations + +from ...typing import Messages +from ...requests import StreamSession +from ..base_provider import AsyncProvider, format_prompt + + +class ChatgptDuo(AsyncProvider): + url = "https://chatgptduo.com" + supports_gpt_35_turbo = True + working = False + + @classmethod + async def create_async( + cls, + model: str, + messages: Messages, + proxy: str = None, + timeout: int = 120, + **kwargs + ) -> str: + async with StreamSession( + impersonate="chrome107", + proxies={"https": proxy}, + timeout=timeout + ) as session: + prompt = format_prompt(messages), + data = { + "prompt": prompt, + "search": prompt, + "purpose": "ask", + } + response = await session.post(f"{cls.url}/", data=data) + response.raise_for_status() + data = 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
\ No newline at end of file |