summaryrefslogtreecommitdiffstats
path: root/g4f/Provider/GptChatly.py
blob: dcedfe1b50100f5a91351c8f663d8c873c9e9c06 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
from __future__ import annotations

from ..requests     import StreamSession
from ..typing       import Messages
from .base_provider import AsyncProvider
from .helper        import get_cookies


class GptChatly(AsyncProvider):
    url = "https://gptchatly.com"
    working = True
    supports_message_history = True
    supports_gpt_35_turbo = True
    supports_gpt_4 = True

    @classmethod
    async def create_async(
        cls,
        model: str,
        messages: Messages,
        proxy: str = None, cookies: dict = None, **kwargs) -> str:

        cookies = get_cookies('gptchatly.com') if not cookies else cookies
        if not cookies:
            raise RuntimeError(
                "g4f.provider.GptChatly requires cookies, [refresh https://gptchatly.com on chrome]"
            )

        if model.startswith("gpt-4"):
            chat_url = f"{cls.url}/fetch-gpt4-response"
        else:
            chat_url = f"{cls.url}/fetch-response"

        headers = {
            'authority': 'gptchatly.com',
            'accept': '*/*',
            'accept-language': 'en,fr-FR;q=0.9,fr;q=0.8,es-ES;q=0.7,es;q=0.6,en-US;q=0.5,am;q=0.4,de;q=0.3',
            'content-type': 'application/json',
            'origin': 'https://gptchatly.com',
            'referer': 'https://gptchatly.com/',
            'sec-ch-ua': '"Chromium";v="118", "Google Chrome";v="118", "Not=A?Brand";v="99"',
            'sec-ch-ua-mobile': '?0',
            'sec-ch-ua-platform': '"macOS"',
            'sec-fetch-dest': 'empty',
            'sec-fetch-mode': 'cors',
            'sec-fetch-site': 'same-origin',
            'user-agent': 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/118.0.0.0 Safari/537.36',
        }

        async with StreamSession(headers=headers, 
                                 proxies={"https": proxy}, cookies=cookies, impersonate='chrome110') as session:
            data = {
                "past_conversations": messages
            }
            async with session.post(chat_url, json=data) as response:
                response.raise_for_status()
                return (await response.json())["chatGPTResponse"]