2023-09-11 22:47:03 +00:00
|
|
|
from __future__ import annotations
|
|
|
|
|
|
|
|
import json
|
|
|
|
|
2023-10-02 00:04:22 +00:00
|
|
|
from ..requests import StreamSession
|
2023-09-11 22:47:03 +00:00
|
|
|
from .base_provider import AsyncGeneratorProvider
|
2023-10-08 11:59:56 +00:00
|
|
|
from ..typing import AsyncResult, Messages
|
2023-09-11 22:47:03 +00:00
|
|
|
|
|
|
|
class Ylokh(AsyncGeneratorProvider):
|
|
|
|
url = "https://chat.ylokh.xyz"
|
2023-10-15 23:47:10 +00:00
|
|
|
working = False
|
2023-09-11 22:47:03 +00:00
|
|
|
supports_gpt_35_turbo = True
|
|
|
|
|
|
|
|
|
|
|
|
@classmethod
|
|
|
|
async def create_async_generator(
|
|
|
|
cls,
|
|
|
|
model: str,
|
2023-10-08 11:59:56 +00:00
|
|
|
messages: Messages,
|
2023-09-11 22:47:03 +00:00
|
|
|
stream: bool = True,
|
|
|
|
proxy: str = None,
|
2023-10-08 11:59:56 +00:00
|
|
|
timeout: int = 120,
|
2023-09-11 22:47:03 +00:00
|
|
|
**kwargs
|
2023-10-08 11:59:56 +00:00
|
|
|
) -> AsyncResult:
|
2023-09-11 22:47:03 +00:00
|
|
|
model = model if model else "gpt-3.5-turbo"
|
|
|
|
headers = {
|
2023-10-08 11:59:56 +00:00
|
|
|
"Origin" : cls.url,
|
|
|
|
"Referer": cls.url + "/",
|
2023-09-11 22:47:03 +00:00
|
|
|
}
|
|
|
|
data = {
|
|
|
|
"messages": messages,
|
|
|
|
"model": model,
|
|
|
|
"temperature": 1,
|
|
|
|
"presence_penalty": 0,
|
|
|
|
"top_p": 1,
|
|
|
|
"frequency_penalty": 0,
|
|
|
|
"allow_fallback": True,
|
|
|
|
"stream": stream,
|
|
|
|
**kwargs
|
|
|
|
}
|
2023-10-02 00:04:22 +00:00
|
|
|
async with StreamSession(
|
|
|
|
headers=headers,
|
2023-10-05 03:13:37 +00:00
|
|
|
proxies={"https": proxy},
|
|
|
|
timeout=timeout
|
2023-09-11 22:47:03 +00:00
|
|
|
) as session:
|
2023-10-02 00:04:22 +00:00
|
|
|
async with session.post("https://chatapi.ylokh.xyz/v1/chat/completions", json=data) as response:
|
2023-09-11 22:47:03 +00:00
|
|
|
response.raise_for_status()
|
|
|
|
if stream:
|
2023-10-02 00:04:22 +00:00
|
|
|
async for line in response.iter_lines():
|
2023-09-11 22:47:03 +00:00
|
|
|
line = line.decode()
|
2023-09-18 05:15:43 +00:00
|
|
|
if line.startswith("data: "):
|
|
|
|
if line.startswith("data: [DONE]"):
|
|
|
|
break
|
2023-10-02 00:04:22 +00:00
|
|
|
line = json.loads(line[6:])
|
2023-09-11 22:47:03 +00:00
|
|
|
content = line["choices"][0]["delta"].get("content")
|
|
|
|
if content:
|
|
|
|
yield content
|
|
|
|
else:
|
|
|
|
chat = await response.json()
|
|
|
|
yield chat["choices"][0]["message"].get("content")
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@classmethod
|
|
|
|
@property
|
|
|
|
def params(cls):
|
|
|
|
params = [
|
|
|
|
("model", "str"),
|
|
|
|
("messages", "list[dict[str, str]]"),
|
|
|
|
("stream", "bool"),
|
|
|
|
("proxy", "str"),
|
2023-10-08 11:59:56 +00:00
|
|
|
("timeout", "int"),
|
2023-09-11 22:47:03 +00:00
|
|
|
("temperature", "float"),
|
2023-09-18 05:15:43 +00:00
|
|
|
("top_p", "float"),
|
2023-09-11 22:47:03 +00:00
|
|
|
]
|
|
|
|
param = ", ".join([": ".join(p) for p in params])
|
2023-09-17 21:23:54 +00:00
|
|
|
return f"g4f.provider.{cls.__name__} supports: ({param})"
|