gpt4free/g4f/Provider/Acytoo.py
msi-JunXiang 901595b10f type hints
Use `from __future__ import annotations avoid `dict` and `list` cause "TypeErro: 'type' object is not subscriptable".

Refer to the following Stack Overflow discussions for more information:
1.
https://stackoverflow.com/questions/75202610/typeerror-type-object-is-not-subscriptable-python
2.
https://stackoverflow.com/questions/59101121/type-hint-for-a-dict-gives-typeerror-type-object-is-not-subscriptable
2023-09-03 16:26:26 +08:00

50 lines
1.2 KiB
Python

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