File size: 8,443 Bytes
b50abc0
 
 
 
 
 
 
 
43cdeef
9fbd158
b59c7b9
b50abc0
b59c7b9
 
b50abc0
be418ef
b50abc0
915b036
b50abc0
 
 
be418ef
b50abc0
be418ef
 
 
 
b50abc0
 
be418ef
b50abc0
be418ef
 
 
 
 
 
 
b50abc0
be418ef
 
b59c7b9
 
c7a9f55
b59c7b9
be418ef
 
b59c7b9
43cdeef
be418ef
 
77af3d8
be418ef
b50abc0
 
 
 
 
 
 
 
 
be418ef
b59c7b9
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
915b036
b59c7b9
 
 
 
be418ef
b59c7b9
 
 
 
 
 
 
 
 
 
 
 
 
 
 
b50abc0
b59c7b9
43cdeef
b59c7b9
43cdeef
b50abc0
915b036
be418ef
b50abc0
 
be418ef
b50abc0
be418ef
43cdeef
be418ef
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
a649779
be418ef
ded01db
 
 
 
 
 
be418ef
ded01db
 
 
 
7521717
ded01db
be418ef
 
ded01db
 
 
be418ef
 
 
 
b1161c6
ded01db
be418ef
 
ded01db
 
 
be418ef
 
ded01db
23c4d31
 
 
be418ef
 
c7a9f55
be418ef
 
 
 
23c4d31
 
 
be418ef
9fbd158
 
 
 
 
 
 
be418ef
9fbd158
 
 
be418ef
915b036
 
23c4d31
 
 
 
9fbd158
23c4d31
b50abc0
 
43cdeef
b50abc0
 
43cdeef
b50abc0
 
 
9fbd158
 
 
 
 
 
 
 
be418ef
b50abc0
 
 
 
 
 
 
 
 
 
 
 
 
 
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
import json
import logging
import os
import uuid
from datetime import datetime
from typing import Any, Dict, List, Optional

import httpx
from dotenv import load_dotenv
from fastapi import FastAPI, HTTPException, Depends
from fastapi.security import HTTPBearer, HTTPAuthorizationCredentials
from pydantic import BaseModel
from starlette.middleware.cors import CORSMiddleware
from starlette.responses import StreamingResponse, Response

# Configure Logging
logging.basicConfig(
    level=logging.INFO, format="%(asctime)s - %(name)s - %(levelname)s - %(message)s"
)
logger = logging.getLogger(__name__)

# Load Environment Variables
load_dotenv()
APP_SECRET = os.getenv("APP_SECRET", "786")
ACCESS_TOKEN = os.getenv("SD_ACCESS_TOKEN", "")

# Initialize FastAPI
app = FastAPI()

# Define Allowed Models
ALLOWED_MODELS = [
    {"id": "claude-3.5-sonnet", "name": "Claude 3.5 Sonnet"},
    {"id": "claude-3-opus", "name": "Claude 3 Opus"},
    {"id": "gemini-1.5-pro", "name": "Gemini 1.5 Pro"},
    {"id": "gpt-4o", "name": "GPT-4o"},
    {"id": "o1-preview", "name": "O1 Preview"},
    {"id": "o1-mini", "name": "O1 Mini"},
    {"id": "gpt-4o-mini", "name": "GPT-4o Mini"},
]

# Configure CORS Middleware
app.add_middleware(
    CORSMiddleware,
    allow_origins=["*"],  # Replace with your trusted domains
    allow_credentials=True,
    allow_methods=["POST", "OPTIONS"],
    allow_headers=["Content-Type", "Authorization"],
)

# Security Scheme
security = HTTPBearer()

# Pydantic Models
class Message(BaseModel):
    role: str
    content: str

class ChatRequest(BaseModel):
    model: str
    messages: List[Message]
    stream: Optional[bool] = False

# Helper Functions
def create_chat_completion_data(content: str, model: str, finish_reason: Optional[str] = None) -> Dict[str, Any]:
    return {
        "id": f"chatcmpl-{uuid.uuid4()}",
        "object": "chat.completion.chunk",
        "created": int(datetime.now().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)):
    if credentials.credentials != APP_SECRET:
        raise HTTPException(status_code=403, detail="Invalid APP_SECRET")
    return credentials.credentials

# Routes
@app.options("/hf/v1/chat/completions")
async def chat_completions_options():
    return Response(
        status_code=200,
        headers={
            "Access-Control-Allow-Origin": "*",
            "Access-Control-Allow-Methods": "POST, OPTIONS",
            "Access-Control-Allow-Headers": "Content-Type, Authorization",
        },
    )

@app.get("/hf/v1/models")
async def list_models():
    return {"object": "list", "data": ALLOWED_MODELS}

@app.post("/hf/v1/chat/completions")
async def chat_completions(
    request: ChatRequest, app_secret: str = Depends(verify_app_secret)
):
    logger.info(f"Received chat completion request for model: {request.model}")

    if request.model not in [model['id'] for model in ALLOWED_MODELS]:
        allowed = ', '.join(model['id'] for model in ALLOWED_MODELS)
        raise HTTPException(
            status_code=400,
            detail=f"Model '{request.model}' is not allowed. Allowed models are: {allowed}",
        )

    # Generate a UUID
    uuid_str = str(uuid.uuid4()).replace("-", "")

    # Prepare Headers (Move sensitive data to environment variables or secure storage)
    headers = {
        'accept': '*/*',
        'accept-language': 'en-US,en;q=0.9',
        'authorization': f'Bearer {ACCESS_TOKEN}',
        'cache-control': 'no-cache',
        'origin': 'chrome-extension://difoiogjjojoaoomphldepapgpbgkhkb',
        'pragma': 'no-cache',
        'priority': 'u=1, i',
        'sec-fetch-dest': 'empty',
        'sec-fetch-mode': 'cors',
        'sec-fetch-site': 'none',
        'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/130.0.0.0 Safari/537.36',
    }

    # Prepare JSON Payload
    json_data = {
        'prompt': "\n".join(
            [
                f"{'User' if msg.role == 'user' else 'Assistant'}: {msg.content}"
                for msg in request.messages
            ]
        ),
        'stream': True,
        'app_name': 'ChitChat_Edge_Ext',
        'app_version': '4.28.0',
        'tz_name': 'Asia/Karachi',
        'cid': 'C092SEMXM9BJ',
        'model': request.model,
        'search': False,
        'auto_search': False,
        'from': 'chat',
        'group_id': 'default',
        'prompt_template': {
            'key': 'artifacts',
            'attributes': {
                'lang': 'original',
            },
        },
        'tools': {
            'auto': ['text_to_image', 'data_analysis'],
        },
        'extra_info': {
            'origin_url': 'chrome-extension://difoiogjjojoaoomphldepapgpbgkhkb/standalone.html?from=sidebar',
            'origin_title': 'Sider',
        },
    }

    async def generate():
        async with httpx.AsyncClient() as client:
            try:
                async with client.stream(
                    'POST',
                    'https://sider.ai/api/v3/completion/text',
                    headers=headers,
                    json=json_data,
                    timeout=120.0
                ) as response:
                    response.raise_for_status()
                    async for line in response.aiter_lines():
                        if line and ("[DONE]" not in line):
                            try:
                                # Adjust the slicing based on the actual response format
                                data = json.loads(line[5:]) if len(line) > 5 else None
                                if data and "data" in data and "text" in data["data"]:
                                    content = data["data"].get("text", "")
                                    yield f"data: {json.dumps(create_chat_completion_data(content, request.model))}\n\n"
                                else:
                                    logger.warning(f"Unexpected data format: {line}")
                            except json.JSONDecodeError as e:
                                logger.error(f"JSON decode error for line: {line} - {e}")
                            except Exception as e:
                                logger.error(f"Error processing line: {line} - {e}")
                    # Indicate the end of the stream
                    yield f"data: {json.dumps(create_chat_completion_data('', request.model, 'stop'))}\n\n"
                    yield "data: [DONE]\n\n"
            except httpx.HTTPStatusError as e:
                logger.error(f"HTTP error occurred: {e}")
                raise HTTPException(status_code=e.response.status_code, detail=str(e))
            except httpx.RequestError as e:
                logger.error(f"An error occurred while requesting: {e}")
                raise HTTPException(status_code=500, detail=str(e))

    if request.stream:
        logger.info("Streaming response")
        return StreamingResponse(generate(), media_type="text/event-stream")
    else:
        logger.info("Non-streaming response")
        full_response = ""
        async for chunk in generate():
            if chunk.startswith("data: ") and not chunk[6:].startswith("[DONE]"):
                try:
                    data = json.loads(chunk[6:])
                    if data["choices"][0]["delta"].get("content"):
                        full_response += data["choices"][0]["delta"]["content"]
                except json.JSONDecodeError as e:
                    logger.error(f"JSON decode error in non-streaming response: {chunk} - {e}")
                except Exception as e:
                    logger.error(f"Error processing chunk in non-streaming response: {chunk} - {e}")

        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,
        }