2023-09-26 08:03:37 +00:00
|
|
|
from __future__ import annotations
|
|
|
|
|
2023-10-02 00:04:22 +00:00
|
|
|
from curl_cffi.requests import AsyncSession
|
2023-09-26 08:03:37 +00:00
|
|
|
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]],
|
2023-10-05 03:13:37 +00:00
|
|
|
proxy: str = None,
|
|
|
|
timeout: int = 30,
|
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):
|
|
|
|
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})"
|