summaryrefslogtreecommitdiffstats
path: root/g4f/Provider/ChatgptDuo.py
diff options
context:
space:
mode:
authorHeiner Lohaus <hlohaus@users.noreply.github.com>2023-11-13 18:58:52 +0100
committerHeiner Lohaus <hlohaus@users.noreply.github.com>2023-11-13 18:58:52 +0100
commit2f64bc99efed1c7ea44e116ab7db12d5f75412a1 (patch)
tree331ec9190971b8f33521f1bcf9adebc088510f70 /g4f/Provider/ChatgptDuo.py
parentAdd Berlin and Koala Provider (diff)
downloadgpt4free-2f64bc99efed1c7ea44e116ab7db12d5f75412a1.tar
gpt4free-2f64bc99efed1c7ea44e116ab7db12d5f75412a1.tar.gz
gpt4free-2f64bc99efed1c7ea44e116ab7db12d5f75412a1.tar.bz2
gpt4free-2f64bc99efed1c7ea44e116ab7db12d5f75412a1.tar.lz
gpt4free-2f64bc99efed1c7ea44e116ab7db12d5f75412a1.tar.xz
gpt4free-2f64bc99efed1c7ea44e116ab7db12d5f75412a1.tar.zst
gpt4free-2f64bc99efed1c7ea44e116ab7db12d5f75412a1.zip
Diffstat (limited to 'g4f/Provider/ChatgptDuo.py')
-rw-r--r--g4f/Provider/ChatgptDuo.py58
1 files changed, 0 insertions, 58 deletions
diff --git a/g4f/Provider/ChatgptDuo.py b/g4f/Provider/ChatgptDuo.py
deleted file mode 100644
index fef3f856..00000000
--- a/g4f/Provider/ChatgptDuo.py
+++ /dev/null
@@ -1,58 +0,0 @@
-from __future__ import annotations
-
-from ..typing import Messages
-from curl_cffi.requests import AsyncSession
-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 AsyncSession(
- 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
-
- @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