mirror of
https://github.com/xtekky/gpt4free.git
synced 2024-11-09 01:10:34 +00:00
57 lines
1.9 KiB
Python
57 lines
1.9 KiB
Python
|
from __future__ import annotations
|
||
|
|
||
|
import uuid
|
||
|
import secrets
|
||
|
from aiohttp import ClientSession
|
||
|
|
||
|
from ..typing import AsyncResult, Messages
|
||
|
from .base_provider import AsyncGeneratorProvider
|
||
|
|
||
|
class Blackbox(AsyncGeneratorProvider):
|
||
|
url = "https://www.blackbox.ai"
|
||
|
working = True
|
||
|
|
||
|
@classmethod
|
||
|
async def create_async_generator(
|
||
|
cls,
|
||
|
model: str,
|
||
|
messages: Messages,
|
||
|
proxy: str = None,
|
||
|
**kwargs
|
||
|
) -> AsyncResult:
|
||
|
headers = {
|
||
|
"User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/122.0.0.0 Safari/537.36",
|
||
|
"Accept": "*/*",
|
||
|
"Accept-Language": "en-US,en;q=0.5",
|
||
|
"Accept-Encoding": "gzip, deflate, br",
|
||
|
"Referer": cls.url,
|
||
|
"Content-Type": "application/json",
|
||
|
"Origin": cls.url,
|
||
|
"DNT": "1",
|
||
|
"Sec-GPC": "1",
|
||
|
"Alt-Used": "www.blackbox.ai",
|
||
|
"Connection": "keep-alive",
|
||
|
}
|
||
|
async with ClientSession(headers=headers) as session:
|
||
|
random_id = secrets.token_hex(16)
|
||
|
random_user_id = str(uuid.uuid4())
|
||
|
data = {
|
||
|
"messages": messages,
|
||
|
"id": random_id,
|
||
|
"userId": random_user_id,
|
||
|
"codeModelMode": True,
|
||
|
"agentMode": {},
|
||
|
"trendingAgentMode": {},
|
||
|
"isMicMode": False,
|
||
|
"isChromeExt": False,
|
||
|
"playgroundMode": False,
|
||
|
"webSearchMode": False,
|
||
|
"userSystemPrompt": "",
|
||
|
"githubToken": None
|
||
|
}
|
||
|
async with session.post(f"{cls.url}/api/chat", json=data, proxy=proxy) as response:
|
||
|
response.raise_for_status()
|
||
|
async for chunk in response.content:
|
||
|
if chunk:
|
||
|
yield chunk.decode()
|