gpt4free/g4f/Provider/deprecated/ChatgptDuo.py

47 lines
1.3 KiB
Python
Raw Normal View History

from __future__ import annotations
2023-11-13 12:58:52 -05:00
from ...typing import Messages
from ...requests import StreamSession
2023-11-13 12:58:52 -05:00
from ..base_provider import AsyncProvider, format_prompt
class ChatgptDuo(AsyncProvider):
url = "https://chatgptduo.com"
supports_gpt_35_turbo = True
2023-10-15 19:47:10 -04:00
working = False
@classmethod
async def create_async(
cls,
model: str,
2023-10-09 04:22:17 -04:00
messages: Messages,
proxy: str = None,
2023-10-09 04:22:17 -04:00
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):
2023-11-20 07:59:14 -05:00
return cls._sources