test24 / api /utils.py
Niansuh's picture
Update api/utils.py
65e5192 verified
raw
history blame
10.7 kB
from datetime import datetime
import json
import uuid
import asyncio
import random
import string
from typing import Any, Dict, Optional
import base64
import os
import httpx
from fastapi import HTTPException
from api.config import (
MODEL_MAPPING,
get_headers_api_chat,
get_headers_chat,
BASE_URL,
AGENT_MODE,
TRENDING_AGENT_MODE,
MODEL_PREFIXES,
MODEL_REFERERS
)
from api.models import ChatRequest
from api.logger import setup_logger
from api.validate import getHid # Import the asynchronous getHid function
logger = setup_logger(__name__)
# Define the blocked message
BLOCKED_MESSAGE = "Generated by BLACKBOX.AI, try unlimited chat https://www.blackbox.ai"
# Helper function to create chat completion data
def create_chat_completion_data(
content: str, model: str, timestamp: int, finish_reason: Optional[str] = None
) -> Dict[str, Any]:
return {
"id": f"chatcmpl-{uuid.uuid4()}",
"object": "chat.completion.chunk",
"created": timestamp,
"model": model,
"choices": [
{
"index": 0,
"delta": {"content": content, "role": "assistant"},
"finish_reason": finish_reason,
}
],
"usage": None,
}
# Function to convert message to dictionary format, ensuring base64 data and optional model prefix
def message_to_dict(message, model_prefix: Optional[str] = None):
content = message.content if isinstance(message.content, str) else message.content[0]["text"]
if model_prefix:
content = f"{model_prefix} {content}"
# Handle image data in the message
if isinstance(message.content, list) and len(message.content) == 2 and "image_url" in message.content[1]:
# Ensure base64 images are always included for all models
return {
"role": message.role,
"content": content,
"data": {
"imagesData": [
{
"filePath": message.content[1].get("filePath", ""),
"contents": message.content[1].get("contents", "")
}
],
"fileText": "",
"title": "snapshot",
},
}
return {"role": message.role, "content": content}
# Function to convert image file to base64
def image_to_base64(image_path: str) -> str:
try:
with open(image_path, "rb") as image_file:
return base64.b64encode(image_file.read()).decode('utf-8')
except Exception as e:
logger.error(f"Error reading image {image_path}: {e}")
return ""
# Process streaming response with headers from config.py
async def process_streaming_response(request: ChatRequest):
# Generate a unique ID for this request
request_id = f"chatcmpl-{uuid.uuid4()}"
logger.info(f"Processing request with ID: {request_id} - Model: {request.model}")
agent_mode = AGENT_MODE.get(request.model, {})
trending_agent_mode = TRENDING_AGENT_MODE.get(request.model, {})
model_prefix = MODEL_PREFIXES.get(request.model, "")
# Adjust headers_api_chat since referer_url is removed
headers_api_chat = get_headers_api_chat(BASE_URL)
if request.model == 'o1-preview':
delay_seconds = random.randint(1, 60)
logger.info(f"Introducing a delay of {delay_seconds} seconds for model 'o1-preview' (Request ID: {request_id})")
await asyncio.sleep(delay_seconds)
# Fetch the h-value for the 'validated' field
h_value = await getHid()
if not h_value:
logger.error("Failed to retrieve h-value for validation.")
raise HTTPException(status_code=500, detail="Validation failed due to missing h-value.")
# Prepare the image payload (if any)
messages = []
for msg in request.messages:
message_dict = message_to_dict(msg, model_prefix=model_prefix)
messages.append(message_dict)
json_data = {
"agentMode": agent_mode,
"clickedAnswer2": False,
"clickedAnswer3": False,
"clickedForceWebSearch": False,
"codeModelMode": False,
"githubToken": None,
"id": None, # Using request_id instead of chat_id
"isChromeExt": False,
"isMicMode": False,
"maxTokens": request.max_tokens,
"messages": messages,
"mobileClient": False,
"playgroundTemperature": request.temperature,
"playgroundTopP": request.top_p,
"previewToken": None,
"trendingAgentMode": trending_agent_mode,
"userId": None,
"userSelectedModel": MODEL_MAPPING.get(request.model, request.model),
"userSystemPrompt": None,
"validated": h_value, # Dynamically set the validated field
"visitFromDelta": False,
"webSearchModePrompt": False,
}
async with httpx.AsyncClient() as client:
try:
async with client.stream(
"POST",
f"{BASE_URL}/api/chat",
headers=headers_api_chat,
json=json_data,
timeout=100,
) as response:
response.raise_for_status()
async for chunk in response.aiter_text():
timestamp = int(datetime.now().timestamp())
if chunk:
content = chunk
if content.startswith("$@$v=undefined-rv1$@$"):
content = content[21:]
# Remove the blocked message if present
if BLOCKED_MESSAGE in content:
logger.info(f"Blocked message detected in response for Request ID {request_id}.")
content = content.replace(BLOCKED_MESSAGE, '').strip()
if not content:
continue # Skip if content is empty after removal
cleaned_content = strip_model_prefix(content, model_prefix)
yield f"data: {json.dumps(create_chat_completion_data(cleaned_content, request.model, timestamp))}\n\n"
yield f"data: {json.dumps(create_chat_completion_data('', request.model, timestamp, 'stop'))}\n\n"
yield "data: [DONE]\n\n"
except httpx.HTTPStatusError as e:
logger.error(f"HTTP error occurred for Request ID {request_id}: {e}")
raise HTTPException(status_code=e.response.status_code, detail=str(e))
except httpx.RequestError as e:
logger.error(f"Error occurred during request for Request ID {request_id}: {e}")
raise HTTPException(status_code=500, detail=str(e))
# Process non-streaming response with headers from config.py
async def process_non_streaming_response(request: ChatRequest):
# Generate a unique ID for this request
request_id = f"chatcmpl-{uuid.uuid4()}"
logger.info(f"Processing request with ID: {request_id} - Model: {request.model}")
agent_mode = AGENT_MODE.get(request.model, {})
trending_agent_mode = TRENDING_AGENT_MODE.get(request.model, {})
model_prefix = MODEL_PREFIXES.get(request.model, "")
# Adjust headers_api_chat and headers_chat since referer_url is removed
headers_api_chat = get_headers_api_chat(BASE_URL)
headers_chat = get_headers_chat(BASE_URL, next_action=str(uuid.uuid4()), next_router_state_tree=json.dumps([""]))
if request.model == 'o1-preview':
delay_seconds = random.randint(20, 60)
logger.info(f"Introducing a delay of {delay_seconds} seconds for model 'o1-preview' (Request ID: {request_id})")
await asyncio.sleep(delay_seconds)
# Fetch the h-value for the 'validated' field
h_value = await getHid()
if not h_value:
logger.error("Failed to retrieve h-value for validation.")
raise HTTPException(status_code=500, detail="Validation failed due to missing h-value.")
# Prepare the image payload (if any)
messages = []
for msg in request.messages:
message_dict = message_to_dict(msg, model_prefix=model_prefix)
messages.append(message_dict)
json_data = {
"agentMode": agent_mode,
"clickedAnswer2": False,
"clickedAnswer3": False,
"clickedForceWebSearch": False,
"codeModelMode": False,
"githubToken": None,
"id": None, # Using request_id instead of chat_id
"isChromeExt": False,
"isMicMode": False,
"maxTokens": request.max_tokens,
"messages": messages,
"mobileClient": False,
"playgroundTemperature": request.temperature,
"playgroundTopP": request.top_p,
"previewToken": None,
"trendingAgentMode": trending_agent_mode,
"userId": None,
"userSelectedModel": MODEL_MAPPING.get(request.model, request.model),
"userSystemPrompt": None,
"validated": h_value, # Dynamically set the validated field
"visitFromDelta": False,
"webSearchModePrompt": False,
}
async with httpx.AsyncClient() as client:
try:
async with client.post(
f"{BASE_URL}/api/chat", headers=headers_api_chat, json=json_data
) as response:
response.raise_for_status()
full_response = await response.text()
except httpx.HTTPStatusError as e:
logger.error(f"HTTP error occurred for Request ID {request_id}: {e}")
raise HTTPException(status_code=e.response.status_code, detail=str(e))
except httpx.RequestError as e:
logger.error(f"Error occurred during request for Request ID {request_id}: {e}")
raise HTTPException(status_code=500, detail=str(e))
# Clean up the response and return it
if full_response.startswith("$@$v=undefined-rv1$@$"):
full_response = full_response[21:]
if BLOCKED_MESSAGE in full_response:
logger.info(f"Blocked message detected in response for Request ID {request_id}.")
full_response = full_response.replace(BLOCKED_MESSAGE, '').strip()
if not full_response:
raise HTTPException(status_code=500, detail="Blocked message detected in response.")
cleaned_full_response = strip_model_prefix(full_response, model_prefix)
return {
"id": f"chatcmpl-{uuid.uuid4()}",
"object": "chat.completion",
"created": int(datetime.now().timestamp()),
"model": request.model,
"choices": [
{
"index": 0,
"message": {"role": "assistant", "content": cleaned_full_response},
"finish_reason": "stop",
}
],
"usage": None,
}