| from __future__ import annotations |
|
|
| from g4f.requests import AsyncSession |
| 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]], |
| **kwargs |
| ) -> str: |
| async with AsyncSession(impersonate="chrome107") as session: |
| prompt = format_prompt(messages), |
| data = { |
| "prompt": prompt, |
| "search": prompt, |
| "purpose": "ask", |
| } |
| async with session.post(f"{cls.url}/", data=data) as response: |
| response.raise_for_status() |
| data = await 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})" |