blob: e7738665e6576db6113b27d484356f51a8ed03fd (
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
51
52
53
|
from __future__ import annotations
from aiohttp import ClientSession
from ...typing import AsyncResult, Messages
from ..base_provider import AsyncGeneratorProvider, ProviderModelMixin
from ..helper import format_prompt
import json
class NexraChatGPTWeb(AsyncGeneratorProvider, ProviderModelMixin):
label = "Nexra ChatGPT Web"
api_endpoint = "https://nexra.aryahcr.cc/api/chat/gptweb"
models = ['gptweb']
@classmethod
async def create_async_generator(
cls,
model: str,
messages: Messages,
proxy: str = None,
**kwargs
) -> AsyncResult:
headers = {
"Content-Type": "application/json",
}
async with ClientSession(headers=headers) as session:
prompt = format_prompt(messages)
if prompt is None:
raise ValueError("Prompt cannot be None")
data = {
"prompt": prompt,
"markdown": False
}
async with session.post(cls.api_endpoint, json=data, proxy=proxy) as response:
response.raise_for_status()
full_response = ""
async for chunk in response.content:
if chunk:
result = chunk.decode("utf-8").strip()
try:
json_data = json.loads(result)
if json_data.get("status"):
full_response = json_data.get("gpt", "")
else:
full_response = f"Error: {json_data.get('message', 'Unknown error')}"
except json.JSONDecodeError:
full_response = "Error: Invalid JSON response."
yield full_response.strip()
|