File size: 9,247 Bytes
922e6b4
7b0af3f
b87572c
5511af6
7b0af3f
ac74d4c
8c22121
8c786ae
035d265
e848ce6
 
7b0af3f
035d265
ac74d4c
e848ce6
5744934
f48dc4d
 
7ac3054
e848ce6
 
 
ac74d4c
 
 
e848ce6
 
 
 
 
 
 
 
 
 
 
 
ac74d4c
 
 
 
035d265
ac74d4c
 
 
035d265
ac74d4c
 
 
 
 
 
7b0af3f
e848ce6
 
 
 
 
 
 
 
 
 
 
 
b87572c
e848ce6
b87572c
 
9e790d4
e848ce6
 
 
 
 
 
 
 
 
b87572c
f215350
7b0af3f
f215350
 
 
 
 
 
 
 
 
035d265
f215350
ebccd4c
b87572c
e848ce6
 
 
 
 
 
 
 
 
7b0af3f
 
9e790d4
e848ce6
5744934
035d265
7b0af3f
 
e26a971
f48dc4d
42eb0f4
5511af6
 
7b0af3f
 
 
 
5511af6
7b0af3f
 
 
 
 
 
 
 
5511af6
7b0af3f
 
035d265
f48dc4d
 
 
 
 
 
 
7b0af3f
f48dc4d
7b0af3f
f48dc4d
 
e848ce6
f48dc4d
e848ce6
 
 
 
 
 
 
 
 
 
 
 
361d6ea
f48dc4d
 
5744934
e848ce6
f48dc4d
5744934
e848ce6
f48dc4d
b87572c
e848ce6
 
 
 
 
 
 
 
 
7b0af3f
 
5511af6
e848ce6
5744934
035d265
7b0af3f
 
e26a971
95050a6
42eb0f4
5511af6
 
7b0af3f
 
 
 
5511af6
7b0af3f
 
 
 
 
 
 
 
5511af6
7b0af3f
 
035d265
95050a6
69e4e8b
5511af6
 
e848ce6
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
5511af6
e848ce6
 
 
 
 
 
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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
from datetime import datetime
from http.client import HTTPException
import json
from typing import Any, Dict, Optional
import uuid

import httpx
from api import validate
from api.config import MODEL_MAPPING, headers, AGENT_MODE, TRENDING_AGENT_MODE
from fastapi import Depends, HTTPException as FastAPIHTTPException
from fastapi.security import HTTPAuthorizationCredentials, HTTPBearer

from api.config import APP_SECRET, BASE_URL
from api.models import ChatRequest

from api.logger import setup_logger

logger = setup_logger(__name__)

# Initialize HTTPBearer for security dependency
security = HTTPBearer()

def create_chat_completion_data(
    content: str, model: str, timestamp: int, finish_reason: Optional[str] = None
) -> Dict[str, Any]:
    """
    Create a dictionary representing a chat completion chunk.

    Args:
        content (str): The content of the message.
        model (str): The model used for the chat.
        timestamp (int): The timestamp of the creation.
        finish_reason (Optional[str], optional): The reason for finishing. Defaults to None.

    Returns:
        Dict[str, Any]: A dictionary representing the chat completion chunk.
    """
    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,
    }

def verify_app_secret(credentials: HTTPAuthorizationCredentials = Depends(security)):
    """
    Verify the application secret from the HTTP authorization credentials.

    Args:
        credentials (HTTPAuthorizationCredentials, optional): The HTTP authorization credentials. Defaults to Depends(security).

    Raises:
        HTTPException: If the APP_SECRET does not match.

    Returns:
        str: The verified credentials.
    """
    if credentials.credentials != APP_SECRET:
        raise FastAPIHTTPException(status_code=403, detail="Invalid APP_SECRET")
    return credentials.credentials

def message_to_dict(message):
    """
    Convert a message object to a dictionary.

    Args:
        message: The message object to convert.

    Returns:
        Dict[str, Any]: The dictionary representation of the message.
    """
    if isinstance(message.content, str):
        return {"role": message.role, "content": message.content}
    elif isinstance(message.content, list) and len(message.content) == 2:
        return {
            "role": message.role,
            "content": message.content[0]["text"],
            "data": {
                "imageBase64": message.content[1]["image_url"]["url"],
                "fileText": "",
                "title": "snapshot",
            },
        }
    else:
        return {"role": message.role, "content": message.content}

async def process_streaming_response(request: ChatRequest):
    """
    Process a streaming response from the chat API.

    Args:
        request (ChatRequest): The chat request containing all necessary information.

    Yields:
        str: The streaming data chunks formatted as server-sent events.
    """
    agent_mode = AGENT_MODE.get(request.model, {})
    trending_agent_mode = TRENDING_AGENT_MODE.get(request.model, {})

    # Log reduced information
    logger.info(
        f"Streaming request for model: '{request.model}', "
        f"agent mode: {agent_mode}, trending agent mode: {trending_agent_mode}"
    )

    json_data = {
        "messages": [message_to_dict(msg) for msg in request.messages],
        "previewToken": None,
        "userId": None,
        "codeModelMode": True,
        "agentMode": agent_mode,
        "trendingAgentMode": trending_agent_mode,
        "isMicMode": False,
        "userSystemPrompt": None,
        "maxTokens": request.max_tokens,
        "playgroundTopP": request.top_p,
        "playgroundTemperature": request.temperature,
        "isChromeExt": False,
        "githubToken": None,
        "clickedAnswer2": False,
        "clickedAnswer3": False,
        "clickedForceWebSearch": False,
        "visitFromDelta": False,
        "mobileClient": False,
        "userSelectedModel": MODEL_MAPPING.get(request.model),
        "validated": validate.getHid()
    }

    async with httpx.AsyncClient() as client:
        try:
            async with client.stream(
                "POST",
                f"{BASE_URL}/api/chat",
                headers=headers,
                json=json_data,
                timeout=100,
            ) as response:
                response.raise_for_status()
                timestamp = int(datetime.now().timestamp())
                async for line in response.aiter_lines():
                    if line:
                        content = line + "\n"
                        if "https://www.blackbox.ai" in content:
                            validate.getHid(True)
                            content = "Hid has been refreshed; feel free to restart the conversation.\n"
                            yield f"data: {json.dumps(create_chat_completion_data(content, request.model, timestamp))}\n\n"
                            break
                        # Remove the specific pattern without affecting markdown
                        content = content.replace("$@$v=undefined-rv1$@$", "")
                        yield f"data: {json.dumps(create_chat_completion_data(content, request.model, timestamp))}\n\n"

                # Indicate the end of the stream
                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: {e}")
            raise FastAPIHTTPException(status_code=e.response.status_code, detail=str(e))
        except httpx.RequestError as e:
            logger.error(f"Error occurred during request: {e}")
            raise FastAPIHTTPException(status_code=500, detail=str(e))

async def process_non_streaming_response(request: ChatRequest):
    """
    Process a non-streaming response from the chat API.

    Args:
        request (ChatRequest): The chat request containing all necessary information.

    Returns:
        Dict[str, Any]: The full response from the chat API formatted appropriately.
    """
    agent_mode = AGENT_MODE.get(request.model, {})
    trending_agent_mode = TRENDING_AGENT_MODE.get(request.model, {})

    # Log reduced information
    logger.info(
        f"Non-streaming request for model: '{request.model}', "
        f"agent mode: {agent_mode}, trending agent mode: {trending_agent_mode}"
    )

    json_data = {
        "messages": [message_to_dict(msg) for msg in request.messages],
        "previewToken": None,
        "userId": None,
        "codeModelMode": True,
        "agentMode": agent_mode,
        "trendingAgentMode": trending_agent_mode,
        "isMicMode": False,
        "userSystemPrompt": None,
        "maxTokens": request.max_tokens,
        "playgroundTopP": request.top_p,
        "playgroundTemperature": request.temperature,
        "isChromeExt": False,
        "githubToken": None,
        "clickedAnswer2": False,
        "clickedAnswer3": False,
        "clickedForceWebSearch": False,
        "visitFromDelta": False,
        "mobileClient": False,
        "userSelectedModel": MODEL_MAPPING.get(request.model),
        "validated": validate.getHid()
    }

    full_response = ""
    async with httpx.AsyncClient() as client:
        try:
            async with client.stream(
                method="POST",
                url=f"{BASE_URL}/api/chat",
                headers=headers,
                json=json_data,
                timeout=100,
            ) as response:
                response.raise_for_status()
                async for chunk in response.aiter_text():
                    full_response += chunk

            if "https://www.blackbox.ai" in full_response:
                validate.getHid(True)
                full_response = "Hid has been refreshed; feel free to restart the conversation."

            # Remove the specific pattern without affecting markdown
            full_response = full_response.replace("$@$v=undefined-rv1$@$", "")

            return {
                "id": f"chatcmpl-{uuid.uuid4()}",
                "object": "chat.completion",
                "created": int(datetime.now().timestamp()),
                "model": request.model,
                "choices": [
                    {
                        "index": 0,
                        "message": {"role": "assistant", "content": full_response},
                        "finish_reason": "stop",
                    }
                ],
                "usage": None,
            }
        except httpx.HTTPStatusError as e:
            logger.error(f"HTTP error occurred: {e}")
            raise FastAPIHTTPException(status_code=e.response.status_code, detail=str(e))
        except httpx.RequestError as e:
            logger.error(f"Error occurred during request: {e}")
            raise FastAPIHTTPException(status_code=500, detail=str(e))