summaryrefslogblamecommitdiffstats
path: root/g4f/Provider/Acytoo.py
blob: 5baa2b8d1b46e6ca36d96b3c16adeccb1c06cd56 (plain) (tree)
1
2
3
4
5
6
7
8
9








                                       

                                                      

                                
                
                          
            

                                       
                                                     
 


                                                                                                                          
                                   

                                   




                           

                                           


     
                                                                 
                        
                                                                                
     
    
            





                                         
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'    : ''
    }