2023-09-26 08:03:37 +00:00
|
|
|
from __future__ import annotations
|
|
|
|
|
2023-11-13 17:58:52 +00:00
|
|
|
from ...typing import Messages
|
2023-10-02 00:04:22 +00:00
|
|
|
from curl_cffi.requests import AsyncSession
|
2023-11-13 17:58:52 +00:00
|
|
|
from ..base_provider import AsyncProvider, format_prompt
|
2023-09-26 08:03:37 +00:00
|
|
|
|
|
|
|
|
|
|
|
class ChatgptDuo(AsyncProvider):
|
|
|
|
url = "https://chatgptduo.com"
|
|
|
|
supports_gpt_35_turbo = True
|
2023-10-15 23:47:10 +00:00
|
|
|
working = False
|
2023-09-26 08:03:37 +00:00
|
|
|
|
|
|
|
@classmethod
|
|
|
|
async def create_async(
|
|
|
|
cls,
|
|
|
|
model: str,
|
2023-10-09 08:22:17 +00:00
|
|
|
messages: Messages,
|
2023-10-05 03:13:37 +00:00
|
|
|
proxy: str = None,
|
2023-10-09 08:22:17 +00:00
|
|
|
timeout: int = 120,
|
2023-09-26 08:03:37 +00:00
|
|
|
**kwargs
|
|
|
|
) -> str:
|
2023-10-05 03:13:37 +00:00
|
|
|
async with AsyncSession(
|
|
|
|
impersonate="chrome107",
|
|
|
|
proxies={"https": proxy},
|
|
|
|
timeout=timeout
|
|
|
|
) as session:
|
2023-09-26 08:03:37 +00:00
|
|
|
prompt = format_prompt(messages),
|
|
|
|
data = {
|
|
|
|
"prompt": prompt,
|
|
|
|
"search": prompt,
|
|
|
|
"purpose": "ask",
|
|
|
|
}
|
2023-10-02 00:04:22 +00:00
|
|
|
response = await session.post(f"{cls.url}/", data=data)
|
|
|
|
response.raise_for_status()
|
|
|
|
data = response.json()
|
2023-09-26 08:03:37 +00:00
|
|
|
|
2023-10-02 00:04:22 +00:00
|
|
|
cls._sources = [{
|
|
|
|
"title": source["title"],
|
|
|
|
"url": source["link"],
|
|
|
|
"snippet": source["snippet"]
|
|
|
|
} for source in data["results"]]
|
2023-09-26 08:03:37 +00:00
|
|
|
|
2023-10-02 00:04:22 +00:00
|
|
|
return data["answer"]
|
2023-09-26 08:03:37 +00:00
|
|
|
|
|
|
|
@classmethod
|
|
|
|
def get_sources(cls):
|
2023-11-20 12:59:14 +00:00
|
|
|
return cls._sources
|