gpt4free/g4f/Provider/V50.py

68 lines
2.4 KiB
Python
Raw Normal View History

from __future__ import annotations
2023-08-17 09:09:35 -04:00
import uuid
import requests
from ..typing import Any, CreateResult
2023-08-27 11:37:44 -04:00
from .base_provider import BaseProvider
2023-08-17 09:09:35 -04:00
2023-08-17 09:42:00 -04:00
class V50(BaseProvider):
2023-08-27 11:37:44 -04:00
url = 'https://p5.v50.ltd'
supports_gpt_35_turbo = True
supports_stream = False
needs_auth = False
working = False
2023-08-17 09:42:00 -04:00
@staticmethod
def create_completion(
model: str,
messages: list[dict[str, str]],
2023-08-27 11:37:44 -04:00
stream: bool, **kwargs: Any) -> CreateResult:
conversation = "\n".join(f"{message['role']}: {message['content']}" for message in messages)
conversation += "\nassistant: "
2023-08-17 09:42:00 -04:00
payload = {
2023-08-27 11:37:44 -04:00
"prompt" : conversation,
"options" : {},
"systemMessage" : ".",
"temperature" : kwargs.get("temperature", 0.4),
"top_p" : kwargs.get("top_p", 0.4),
"model" : model,
"user" : str(uuid.uuid4())
2023-08-17 09:42:00 -04:00
}
2023-08-27 11:37:44 -04:00
2023-08-17 09:42:00 -04:00
headers = {
2023-08-27 11:37:44 -04:00
'authority' : 'p5.v50.ltd',
'accept' : 'application/json, text/plain, */*',
'accept-language' : 'id-ID,id;q=0.9,en-US;q=0.8,en;q=0.7',
'content-type' : 'application/json',
'origin' : 'https://p5.v50.ltd',
'referer' : 'https://p5.v50.ltd/',
2023-08-17 09:42:00 -04:00
'sec-ch-ua-platform': '"Windows"',
2023-08-27 11:37:44 -04:00
'sec-fetch-dest' : 'empty',
'sec-fetch-mode' : 'cors',
'sec-fetch-site' : 'same-origin',
'user-agent' : 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/116.0.0.0 Safari/537.36'
2023-08-17 09:42:00 -04:00
}
response = requests.post("https://p5.v50.ltd/api/chat-process",
json=payload, headers=headers, proxies=kwargs['proxy'] if 'proxy' in kwargs else {})
2023-08-27 11:37:44 -04:00
2023-08-22 17:27:34 -04:00
if "https://fk1.v50.ltd" not in response.text:
yield response.text
2023-08-17 09:42:00 -04:00
@classmethod
@property
def params(cls):
params = [
("model", "str"),
("messages", "list[dict[str, str]]"),
("stream", "bool"),
("temperature", "float"),
("top_p", "int"),
]
param = ", ".join([": ".join(p) for p in params])
2023-09-15 21:33:25 -04:00
return f"g4f.Provider.{cls.__name__} supports: ({param})"