summaryrefslogtreecommitdiffstats
path: root/g4f/Provider/Acytoo.py
blob: 48a3a344e0e8c35cc3bbf07e8f8cb12f259e499c (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
from __future__ import annotations

import time

import requests

from ..typing import Any, CreateResult
from .base_provider import BaseProvider


class Acytoo(BaseProvider):
    url                   = 'https://chat.acytoo.com/'
    working               = True
    supports_gpt_35_turbo = True

    @classmethod
    def create_completion(
        cls,
        model: str,
        messages: list[dict[str, str]],
        stream: bool, **kwargs: Any) -> CreateResult:

        response = requests.post(f'{cls.url}api/completions', 
                                 headers=_create_header(), json=_create_payload(messages, kwargs.get('temperature', 0.5)))
        
        response.raise_for_status()
        response.encoding = 'utf-8'
        
        yield response.text


def _create_header():
    return {
        'accept': '*/*',
        'content-type': 'application/json',
    }


def _create_payload(messages: list[dict[str, str]], temperature):
    payload_messages = [
        message | {'createdAt': int(time.time()) * 1000} for message in messages
    ]
    
    return {
        'key'         : '',
        'model'       : 'gpt-3.5-turbo',
        'messages'    : payload_messages,
        'temperature' : temperature,
        'password'    : ''
    }