2024-04-12 22:00:57 +03:00
|
|
|
from __future__ import annotations
|
|
|
|
|
2024-11-03 22:07:38 +03:00
|
|
|
from aiohttp import ClientSession
|
2024-09-13 00:00:44 +03:00
|
|
|
import random
|
|
|
|
import string
|
2024-10-11 09:41:23 +03:00
|
|
|
import json
|
2024-10-16 18:29:16 +03:00
|
|
|
import re
|
2024-11-12 11:31:28 +03:00
|
|
|
import aiohttp
|
2024-04-12 22:00:57 +03:00
|
|
|
|
2024-12-08 06:43:51 +03:00
|
|
|
import json
|
|
|
|
from pathlib import Path
|
|
|
|
|
2024-10-19 13:17:55 +03:00
|
|
|
from ..typing import AsyncResult, Messages, ImageType
|
2024-07-08 23:49:38 +03:00
|
|
|
from .base_provider import AsyncGeneratorProvider, ProviderModelMixin
|
2024-10-19 13:17:55 +03:00
|
|
|
from ..image import ImageResponse, to_data_uri
|
2024-12-08 22:39:40 +03:00
|
|
|
from ..cookies import get_cookies_dir
|
2024-11-28 19:50:24 +03:00
|
|
|
from .helper import format_prompt
|
|
|
|
|
2024-07-08 23:49:38 +03:00
|
|
|
class Blackbox(AsyncGeneratorProvider, ProviderModelMixin):
|
2024-10-16 18:29:16 +03:00
|
|
|
label = "Blackbox AI"
|
2024-04-12 22:00:57 +03:00
|
|
|
url = "https://www.blackbox.ai"
|
2024-09-12 23:20:02 +03:00
|
|
|
api_endpoint = "https://www.blackbox.ai/api/chat"
|
2024-12-08 22:39:40 +03:00
|
|
|
|
2024-04-12 22:00:57 +03:00
|
|
|
working = True
|
2024-09-12 23:20:02 +03:00
|
|
|
supports_stream = True
|
|
|
|
supports_system_message = True
|
|
|
|
supports_message_history = True
|
2024-11-20 21:58:16 +03:00
|
|
|
|
2024-10-11 09:41:23 +03:00
|
|
|
default_model = 'blackboxai'
|
2024-11-18 17:41:45 +03:00
|
|
|
default_vision_model = default_model
|
2024-12-05 03:07:59 +03:00
|
|
|
default_image_model = 'flux'
|
2024-12-08 06:43:51 +03:00
|
|
|
image_models = ['ImageGeneration', 'repomap']
|
2024-11-20 11:51:29 +03:00
|
|
|
vision_models = [default_model, 'gpt-4o', 'gemini-pro', 'gemini-1.5-flash', 'llama-3.1-8b', 'llama-3.1-70b', 'llama-3.1-405b']
|
2024-11-20 21:58:16 +03:00
|
|
|
|
2024-11-20 11:51:29 +03:00
|
|
|
userSelectedModel = ['gpt-4o', 'gemini-pro', 'claude-sonnet-3.5', 'blackboxai-pro']
|
2024-11-20 21:58:16 +03:00
|
|
|
|
2024-09-24 13:23:53 +03:00
|
|
|
agentMode = {
|
2024-12-08 06:43:51 +03:00
|
|
|
'ImageGeneration': {'mode': True, 'id': "ImageGenerationLV45LJp", 'name': "Image Generation"}
|
2024-09-24 13:23:53 +03:00
|
|
|
}
|
2024-12-08 22:39:40 +03:00
|
|
|
|
2024-09-24 13:23:53 +03:00
|
|
|
trendingAgentMode = {
|
2024-09-05 09:58:28 +03:00
|
|
|
"gemini-1.5-flash": {'mode': True, 'id': 'Gemini'},
|
|
|
|
"llama-3.1-8b": {'mode': True, 'id': "llama-3.1-8b"},
|
|
|
|
'llama-3.1-70b': {'mode': True, 'id': "llama-3.1-70b"},
|
2024-11-28 19:50:24 +03:00
|
|
|
'llama-3.1-405b': {'mode': True, 'id': "llama-3.1-405"},
|
2024-11-03 22:07:38 +03:00
|
|
|
#
|
|
|
|
'Python Agent': {'mode': True, 'id': "Python Agent"},
|
|
|
|
'Java Agent': {'mode': True, 'id': "Java Agent"},
|
|
|
|
'JavaScript Agent': {'mode': True, 'id': "JavaScript Agent"},
|
|
|
|
'HTML Agent': {'mode': True, 'id': "HTML Agent"},
|
|
|
|
'Google Cloud Agent': {'mode': True, 'id': "Google Cloud Agent"},
|
|
|
|
'Android Developer': {'mode': True, 'id': "Android Developer"},
|
|
|
|
'Swift Developer': {'mode': True, 'id': "Swift Developer"},
|
|
|
|
'Next.js Agent': {'mode': True, 'id': "Next.js Agent"},
|
|
|
|
'MongoDB Agent': {'mode': True, 'id': "MongoDB Agent"},
|
|
|
|
'PyTorch Agent': {'mode': True, 'id': "PyTorch Agent"},
|
|
|
|
'React Agent': {'mode': True, 'id': "React Agent"},
|
|
|
|
'Xcode Agent': {'mode': True, 'id': "Xcode Agent"},
|
|
|
|
'AngularJS Agent': {'mode': True, 'id': "AngularJS Agent"},
|
2024-11-20 11:51:29 +03:00
|
|
|
#
|
2024-10-11 09:41:23 +03:00
|
|
|
'blackboxai-pro': {'mode': True, 'id': "BLACKBOXAI-PRO"},
|
2024-11-03 22:07:38 +03:00
|
|
|
#
|
|
|
|
'repomap': {'mode': True, 'id': "repomap"},
|
|
|
|
#
|
|
|
|
'Heroku Agent': {'mode': True, 'id': "Heroku Agent"},
|
|
|
|
'Godot Agent': {'mode': True, 'id': "Godot Agent"},
|
|
|
|
'Go Agent': {'mode': True, 'id': "Go Agent"},
|
|
|
|
'Gitlab Agent': {'mode': True, 'id': "Gitlab Agent"},
|
|
|
|
'Git Agent': {'mode': True, 'id': "Git Agent"},
|
2024-11-28 19:50:24 +03:00
|
|
|
'Flask Agent': {'mode': True, 'id': "Flask Agent"},
|
2024-11-03 22:07:38 +03:00
|
|
|
'Firebase Agent': {'mode': True, 'id': "Firebase Agent"},
|
|
|
|
'FastAPI Agent': {'mode': True, 'id': "FastAPI Agent"},
|
|
|
|
'Erlang Agent': {'mode': True, 'id': "Erlang Agent"},
|
|
|
|
'Electron Agent': {'mode': True, 'id': "Electron Agent"},
|
|
|
|
'Docker Agent': {'mode': True, 'id': "Docker Agent"},
|
|
|
|
'DigitalOcean Agent': {'mode': True, 'id': "DigitalOcean Agent"},
|
|
|
|
'Bitbucket Agent': {'mode': True, 'id': "Bitbucket Agent"},
|
|
|
|
'Azure Agent': {'mode': True, 'id': "Azure Agent"},
|
|
|
|
'Flutter Agent': {'mode': True, 'id': "Flutter Agent"},
|
|
|
|
'Youtube Agent': {'mode': True, 'id': "Youtube Agent"},
|
|
|
|
'builder Agent': {'mode': True, 'id': "builder Agent"},
|
2024-10-03 01:03:05 +03:00
|
|
|
}
|
2024-11-20 11:51:29 +03:00
|
|
|
|
|
|
|
additional_prefixes = {
|
2024-12-05 03:07:59 +03:00
|
|
|
'gpt-4o': '@GPT-4o',
|
|
|
|
'gemini-pro': '@Gemini-PRO',
|
|
|
|
'claude-sonnet-3.5': '@Claude-Sonnet-3.5'
|
2024-11-20 21:58:16 +03:00
|
|
|
}
|
2024-11-20 11:51:29 +03:00
|
|
|
|
|
|
|
model_prefixes = {
|
2024-11-20 21:58:16 +03:00
|
|
|
**{
|
|
|
|
mode: f"@{value['id']}" for mode, value in trendingAgentMode.items()
|
|
|
|
if mode not in ["gemini-1.5-flash", "llama-3.1-8b", "llama-3.1-70b", "llama-3.1-405b", "repomap"]
|
|
|
|
},
|
|
|
|
**additional_prefixes
|
|
|
|
}
|
2024-11-20 11:51:29 +03:00
|
|
|
|
|
|
|
models = list(dict.fromkeys([default_model, *userSelectedModel, *list(agentMode.keys()), *list(trendingAgentMode.keys())]))
|
|
|
|
|
2024-10-03 01:03:05 +03:00
|
|
|
model_aliases = {
|
2024-12-08 06:43:51 +03:00
|
|
|
"gpt-4": "blackboxai",
|
|
|
|
"gpt-4": "gpt-4o",
|
|
|
|
"gpt-4o-mini": "gpt-4o",
|
2024-12-05 03:07:59 +03:00
|
|
|
"gpt-3.5-turbo": "blackboxai",
|
2024-10-03 01:03:05 +03:00
|
|
|
"gemini-flash": "gemini-1.5-flash",
|
2024-12-08 06:43:51 +03:00
|
|
|
"claude-3.5-sonnet": "claude-sonnet-3.5",
|
|
|
|
"flux": "ImageGeneration",
|
2024-09-05 09:58:28 +03:00
|
|
|
}
|
|
|
|
|
2024-12-08 06:43:51 +03:00
|
|
|
@classmethod
|
|
|
|
def _get_cache_file(cls) -> Path:
|
2024-12-08 22:39:40 +03:00
|
|
|
dir = Path(get_cookies_dir())
|
|
|
|
dir.mkdir(exist_ok=True)
|
|
|
|
return dir / 'blackbox.json'
|
2024-12-08 06:43:51 +03:00
|
|
|
|
|
|
|
@classmethod
|
|
|
|
def _load_cached_value(cls) -> str | None:
|
|
|
|
cache_file = cls._get_cache_file()
|
|
|
|
if cache_file.exists():
|
|
|
|
try:
|
|
|
|
with open(cache_file, 'r') as f:
|
|
|
|
data = json.load(f)
|
|
|
|
return data.get('validated_value')
|
|
|
|
except Exception as e:
|
|
|
|
print(f"Error reading cache file: {e}")
|
|
|
|
return None
|
|
|
|
|
|
|
|
@classmethod
|
|
|
|
def _save_cached_value(cls, value: str):
|
|
|
|
cache_file = cls._get_cache_file()
|
|
|
|
try:
|
|
|
|
with open(cache_file, 'w') as f:
|
|
|
|
json.dump({'validated_value': value}, f)
|
|
|
|
except Exception as e:
|
|
|
|
print(f"Error writing to cache file: {e}")
|
|
|
|
|
|
|
|
@classmethod
|
|
|
|
async def fetch_validated(cls):
|
|
|
|
# Let's try to load the value from the cache first
|
|
|
|
cached_value = cls._load_cached_value()
|
|
|
|
if cached_value:
|
|
|
|
return cached_value
|
2024-11-13 23:46:46 +03:00
|
|
|
|
2024-11-12 11:31:28 +03:00
|
|
|
async with aiohttp.ClientSession() as session:
|
|
|
|
try:
|
2024-11-13 17:16:44 +03:00
|
|
|
async with session.get(cls.url) as response:
|
|
|
|
if response.status != 200:
|
|
|
|
print("Failed to load the page.")
|
2024-12-08 06:43:51 +03:00
|
|
|
return cached_value
|
2024-11-13 17:16:44 +03:00
|
|
|
|
2024-11-12 11:31:28 +03:00
|
|
|
page_content = await response.text()
|
2024-11-13 17:16:44 +03:00
|
|
|
js_files = re.findall(r'static/chunks/\d{4}-[a-fA-F0-9]+\.js', page_content)
|
2024-11-12 11:31:28 +03:00
|
|
|
|
2024-11-13 17:16:44 +03:00
|
|
|
key_pattern = re.compile(r'w="([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12})"')
|
|
|
|
|
|
|
|
for js_file in js_files:
|
|
|
|
js_url = f"{cls.url}/_next/{js_file}"
|
|
|
|
async with session.get(js_url) as js_response:
|
|
|
|
if js_response.status == 200:
|
|
|
|
js_content = await js_response.text()
|
|
|
|
match = key_pattern.search(js_content)
|
|
|
|
if match:
|
|
|
|
validated_value = match.group(1)
|
2024-12-08 06:43:51 +03:00
|
|
|
# Save the new value to the cache file
|
|
|
|
cls._save_cached_value(validated_value)
|
2024-11-13 17:16:44 +03:00
|
|
|
return validated_value
|
2024-11-12 11:31:28 +03:00
|
|
|
except Exception as e:
|
2024-11-12 12:15:40 +03:00
|
|
|
print(f"Error fetching validated value: {e}")
|
2024-11-12 11:31:28 +03:00
|
|
|
|
2024-12-08 06:43:51 +03:00
|
|
|
return cached_value
|
2024-11-12 11:31:28 +03:00
|
|
|
|
2024-11-20 11:51:29 +03:00
|
|
|
@staticmethod
|
|
|
|
def generate_id(length=7):
|
|
|
|
characters = string.ascii_letters + string.digits
|
|
|
|
return ''.join(random.choice(characters) for _ in range(length))
|
2024-11-20 21:58:16 +03:00
|
|
|
|
2024-11-03 22:07:38 +03:00
|
|
|
@classmethod
|
|
|
|
def add_prefix_to_messages(cls, messages: Messages, model: str) -> Messages:
|
|
|
|
prefix = cls.model_prefixes.get(model, "")
|
|
|
|
if not prefix:
|
|
|
|
return messages
|
|
|
|
|
|
|
|
new_messages = []
|
|
|
|
for message in messages:
|
|
|
|
new_message = message.copy()
|
|
|
|
if message['role'] == 'user':
|
|
|
|
new_message['content'] = (prefix + " " + message['content']).strip()
|
|
|
|
new_messages.append(new_message)
|
|
|
|
|
|
|
|
return new_messages
|
|
|
|
|
2024-04-12 22:00:57 +03:00
|
|
|
@classmethod
|
|
|
|
async def create_async_generator(
|
|
|
|
cls,
|
|
|
|
model: str,
|
|
|
|
messages: Messages,
|
2024-11-20 21:58:16 +03:00
|
|
|
prompt: str = None,
|
2024-11-03 22:07:38 +03:00
|
|
|
proxy: str = None,
|
|
|
|
web_search: bool = False,
|
2024-10-19 13:17:55 +03:00
|
|
|
image: ImageType = None,
|
|
|
|
image_name: str = None,
|
2024-12-08 06:43:51 +03:00
|
|
|
top_p: float = 0.9,
|
|
|
|
temperature: float = 0.5,
|
|
|
|
max_tokens: int = 1024,
|
2024-04-12 22:00:57 +03:00
|
|
|
**kwargs
|
2024-11-03 22:07:38 +03:00
|
|
|
) -> AsyncResult:
|
2024-11-20 11:51:29 +03:00
|
|
|
message_id = cls.generate_id()
|
2024-11-18 17:41:45 +03:00
|
|
|
messages = cls.add_prefix_to_messages(messages, model)
|
2024-11-12 11:31:28 +03:00
|
|
|
validated_value = await cls.fetch_validated()
|
2024-11-28 19:50:24 +03:00
|
|
|
formatted_message = format_prompt(messages)
|
2024-12-08 06:43:51 +03:00
|
|
|
model = cls.get_model(model)
|
2024-11-28 19:50:24 +03:00
|
|
|
|
|
|
|
messages = [{"id": message_id, "content": formatted_message, "role": "user"}]
|
2024-10-16 18:29:16 +03:00
|
|
|
|
2024-10-19 13:17:55 +03:00
|
|
|
if image is not None:
|
2024-11-18 17:41:45 +03:00
|
|
|
messages[-1]['data'] = {
|
2024-12-05 03:07:59 +03:00
|
|
|
"imagesData": [
|
|
|
|
{
|
|
|
|
"filePath": f"MultipleFiles/{image_name}",
|
|
|
|
"contents": to_data_uri(image)
|
|
|
|
}
|
|
|
|
],
|
|
|
|
"fileText": "",
|
|
|
|
"title": ""
|
2024-10-19 13:17:55 +03:00
|
|
|
}
|
2024-10-16 18:29:16 +03:00
|
|
|
|
2024-11-03 22:07:38 +03:00
|
|
|
headers = {
|
2024-10-16 18:29:16 +03:00
|
|
|
'accept': '*/*',
|
2024-11-03 22:07:38 +03:00
|
|
|
'content-type': 'application/json',
|
2024-10-16 18:29:16 +03:00
|
|
|
'origin': cls.url,
|
2024-11-03 22:07:38 +03:00
|
|
|
'referer': f'{cls.url}/',
|
2024-12-08 06:43:51 +03:00
|
|
|
'user-agent': 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36'
|
2024-10-16 18:29:16 +03:00
|
|
|
}
|
2024-11-20 21:58:16 +03:00
|
|
|
|
2024-11-03 22:07:38 +03:00
|
|
|
data = {
|
2024-11-18 17:41:45 +03:00
|
|
|
"messages": messages,
|
2024-11-03 22:07:38 +03:00
|
|
|
"id": message_id,
|
2024-10-12 22:56:06 +03:00
|
|
|
"previewToken": None,
|
|
|
|
"userId": None,
|
|
|
|
"codeModelMode": True,
|
2024-11-03 22:07:38 +03:00
|
|
|
"agentMode": cls.agentMode.get(model, {}) if model in cls.agentMode else {},
|
|
|
|
"trendingAgentMode": cls.trendingAgentMode.get(model, {}) if model in cls.trendingAgentMode else {},
|
2024-10-12 22:56:06 +03:00
|
|
|
"isMicMode": False,
|
|
|
|
"userSystemPrompt": None,
|
2024-12-08 06:43:51 +03:00
|
|
|
"maxTokens": max_tokens,
|
|
|
|
"playgroundTopP": top_p,
|
|
|
|
"playgroundTemperature": temperature,
|
2024-10-12 22:56:06 +03:00
|
|
|
"isChromeExt": False,
|
|
|
|
"githubToken": None,
|
|
|
|
"clickedAnswer2": False,
|
|
|
|
"clickedAnswer3": False,
|
|
|
|
"clickedForceWebSearch": False,
|
|
|
|
"visitFromDelta": False,
|
|
|
|
"mobileClient": False,
|
2024-11-20 11:51:29 +03:00
|
|
|
"userSelectedModel": model if model in cls.userSelectedModel else None,
|
2024-10-29 11:07:27 +03:00
|
|
|
"webSearchMode": web_search,
|
2024-11-12 11:31:28 +03:00
|
|
|
"validated": validated_value,
|
2024-12-05 03:07:59 +03:00
|
|
|
"imageGenerationMode": False,
|
2024-12-08 06:43:51 +03:00
|
|
|
"webSearchModePrompt": web_search
|
2024-10-12 22:56:06 +03:00
|
|
|
}
|
2024-07-08 23:49:38 +03:00
|
|
|
|
2024-11-03 22:07:38 +03:00
|
|
|
async with ClientSession(headers=headers) as session:
|
|
|
|
async with session.post(cls.api_endpoint, json=data, proxy=proxy) as response:
|
|
|
|
response.raise_for_status()
|
2024-11-20 11:51:29 +03:00
|
|
|
response_text = await response.text()
|
2024-11-20 21:58:16 +03:00
|
|
|
|
2024-11-20 11:51:29 +03:00
|
|
|
if model in cls.image_models:
|
|
|
|
image_matches = re.findall(r'!\[.*?\]\((https?://[^\)]+)\)', response_text)
|
|
|
|
if image_matches:
|
|
|
|
image_url = image_matches[0]
|
2024-11-20 21:58:16 +03:00
|
|
|
yield ImageResponse(image_url, prompt)
|
2024-11-20 11:51:29 +03:00
|
|
|
return
|
|
|
|
|
|
|
|
response_text = re.sub(r'Generated by BLACKBOX.AI, try unlimited chat https://www.blackbox.ai', '', response_text, flags=re.DOTALL)
|
2024-11-20 21:58:16 +03:00
|
|
|
|
2024-11-20 11:51:29 +03:00
|
|
|
json_match = re.search(r'\$~~~\$(.*?)\$~~~\$', response_text, re.DOTALL)
|
|
|
|
if json_match:
|
|
|
|
search_results = json.loads(json_match.group(1))
|
|
|
|
answer = response_text.split('$~~~$')[-1].strip()
|
2024-11-20 21:58:16 +03:00
|
|
|
|
2024-11-20 11:51:29 +03:00
|
|
|
formatted_response = f"{answer}\n\n**Source:**"
|
|
|
|
for i, result in enumerate(search_results, 1):
|
|
|
|
formatted_response += f"\n{i}. {result['title']}: {result['link']}"
|
2024-11-20 21:58:16 +03:00
|
|
|
|
2024-11-20 11:51:29 +03:00
|
|
|
yield formatted_response
|
|
|
|
else:
|
|
|
|
yield response_text.strip()
|