File size: 14,181 Bytes
5bfdf79 |
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 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 |
import asyncio
import time
import uuid
import os
import json
from typing import Dict, List, Optional, Union, Any
from fastapi import FastAPI, HTTPException, Depends, Request, status, Body
from fastapi.middleware.cors import CORSMiddleware
from fastapi.responses import JSONResponse, StreamingResponse
from fastapi.security import HTTPBearer, HTTPAuthorizationCredentials
from pydantic import BaseModel, Field, EmailStr
from slowapi import Limiter, _rate_limit_exceeded_handler
from slowapi.util import get_remote_address
from slowapi.errors import RateLimitExceeded
import uvicorn
from db_helper import MongoDBHelper
from deepinfra_client import DeepInfraClient
from hf_utils import HuggingFaceSpaceHelper
# Initialize Hugging Face Space helper
hf_helper = HuggingFaceSpaceHelper()
# Install required packages for HF Spaces if needed
if hf_helper.is_in_space:
hf_helper.install_dependencies([
"pymongo", "python-dotenv", "fastapi", "uvicorn", "slowapi",
"fake-useragent", "requests-ip-rotator", "pydantic[email]"
])
# Initialize FastAPI app
app = FastAPI(
title="PyScoutAI API",
description="An OpenAI-compatible API that provides access to DeepInfra models with enhanced features",
version="1.0.0"
)
# Setup rate limiting
limiter = Limiter(key_func=get_remote_address)
app.state.limiter = limiter
app.add_exception_handler(RateLimitExceeded, _rate_limit_exceeded_handler)
# Set up CORS
app.add_middleware(
CORSMiddleware,
allow_origins=["*"],
allow_credentials=True,
allow_methods=["*"],
allow_headers=["*"],
)
# Security
security = HTTPBearer(auto_error=False)
# Database helper
try:
db = MongoDBHelper(hf_helper.get_mongodb_uri())
except Exception as e:
print(f"Warning: MongoDB connection failed: {e}")
print("API key authentication will not work!")
db = None
# Models for requests and responses
class Message(BaseModel):
role: str
content: Optional[str] = None
name: Optional[str] = None
class ChatCompletionRequest(BaseModel):
model: str
messages: List[Message]
temperature: Optional[float] = 0.7
top_p: Optional[float] = 1.0
n: Optional[int] = 1
stream: Optional[bool] = False
max_tokens: Optional[int] = None
presence_penalty: Optional[float] = 0.0
frequency_penalty: Optional[float] = 0.0
user: Optional[str] = None
class CompletionRequest(BaseModel):
model: str
prompt: Union[str, List[str]]
temperature: Optional[float] = 0.7
top_p: Optional[float] = 1.0
n: Optional[int] = 1
stream: Optional[bool] = False
max_tokens: Optional[int] = None
presence_penalty: Optional[float] = 0.0
frequency_penalty: Optional[float] = 0.0
user: Optional[str] = None
class UserCreate(BaseModel):
email: EmailStr
name: str
organization: Optional[str] = None
class APIKeyCreate(BaseModel):
name: str = "Default API Key"
user_id: str
class APIKeyResponse(BaseModel):
key: str
name: str
created_at: str
# API clients storage (one per API key)
clients: Dict[str, DeepInfraClient] = {}
# Helper function to get the API key from the request
async def get_api_key(
request: Request,
credentials: Optional[HTTPAuthorizationCredentials] = Depends(security)
) -> Optional[str]:
# Check Authorization header
if credentials:
return credentials.credentials
# Check for API key in the request headers
if "Authorization" in request.headers:
auth = request.headers["Authorization"]
if auth.startswith("Bearer "):
return auth.replace("Bearer ", "")
if "x-api-key" in request.headers:
return request.headers["x-api-key"]
# Check for API key in query parameters
api_key = request.query_params.get("api_key")
if api_key:
return api_key
# No API key found, return None
return None
# Helper function to validate a PyScout API key and get user info
async def get_user_info(api_key: Optional[str] = Depends(get_api_key)) -> Dict[str, Any]:
if not api_key:
raise HTTPException(
status_code=status.HTTP_401_UNAUTHORIZED,
detail="API key is required",
headers={"WWW-Authenticate": "Bearer"}
)
# Skip validation if DB is not connected (development mode)
if not db:
return {"user_id": "development", "key": api_key}
# Check if key starts with PyScoutAI-
if not api_key.startswith("PyScoutAI-"):
raise HTTPException(
status_code=status.HTTP_401_UNAUTHORIZED,
detail="Invalid API key format",
headers={"WWW-Authenticate": "Bearer"}
)
# Validate the API key
user_info = db.validate_api_key(api_key)
if not user_info:
raise HTTPException(
status_code=status.HTTP_401_UNAUTHORIZED,
detail="Invalid API key",
headers={"WWW-Authenticate": "Bearer"}
)
# Check rate limits
rate_limit = db.check_rate_limit(api_key)
if not rate_limit["allowed"]:
raise HTTPException(
status_code=status.HTTP_429_TOO_MANY_REQUESTS,
detail=rate_limit["reason"]
)
return user_info
# Helper function to get or create a client
def get_client(api_key: str) -> DeepInfraClient:
if api_key not in clients:
# Create a client with IP rotation and random user agent
clients[api_key] = DeepInfraClient(
use_random_user_agent=True,
use_proxy_rotation=True,
use_ip_rotation=True
)
return clients[api_key]
@app.get("/")
async def root():
metadata = hf_helper.get_hf_metadata()
return {
"message": "Welcome to PyScoutAI API",
"documentation": "/docs",
"environment": "Hugging Face Space" if hf_helper.is_in_space else "Local",
"endpoints": [
"/v1/models",
"/v1/chat/completions",
"/v1/completions"
],
**metadata
}
@app.get("/v1/models")
@limiter.limit("20/minute")
async def list_models(
request: Request,
user_info: Dict[str, Any] = Depends(get_user_info)
):
api_key = user_info["key"]
client = get_client(api_key)
try:
models = await asyncio.to_thread(client.models.list)
# Log the API usage
if db:
db.log_api_usage(api_key, "/v1/models", 0)
return models
except Exception as e:
raise HTTPException(status_code=500, detail=f"Error listing models: {str(e)}")
@app.post("/v1/chat/completions")
@limiter.limit("60/minute")
async def create_chat_completion(
request: Request,
body: ChatCompletionRequest,
user_info: Dict[str, Any] = Depends(get_user_info)
):
api_key = user_info["key"]
client = get_client(api_key)
try:
# Prepare the messages
messages = [{"role": msg.role, "content": msg.content} for msg in body.messages if msg.content is not None]
kwargs = {
"model": body.model,
"temperature": body.temperature,
"max_tokens": body.max_tokens,
"stream": body.stream,
"top_p": body.top_p,
"presence_penalty": body.presence_penalty,
"frequency_penalty": body.frequency_penalty,
}
if body.stream:
async def generate_stream():
response_stream = await asyncio.to_thread(
client.chat.create,
messages=messages,
**kwargs
)
total_tokens = 0
for chunk in response_stream:
# Track token usage for each chunk if available
if 'usage' in chunk and chunk['usage']:
total_tokens += chunk['usage'].get('total_tokens', 0)
yield f"data: {json.dumps(chunk)}\n\n"
# Log API usage at the end of streaming
if db:
db.log_api_usage(api_key, "/v1/chat/completions", total_tokens, body.model)
yield "data: [DONE]\n\n"
return StreamingResponse(
generate_stream(),
media_type="text/event-stream"
)
else:
response = await asyncio.to_thread(
client.chat.create,
messages=messages,
**kwargs
)
# Log the API usage
if db and 'usage' in response:
total_tokens = response['usage'].get('total_tokens', 0)
db.log_api_usage(api_key, "/v1/chat/completions", total_tokens, body.model)
return response
except Exception as e:
raise HTTPException(status_code=500, detail=f"Error generating chat completion: {str(e)}")
@app.post("/v1/completions")
@limiter.limit("60/minute")
async def create_completion(
request: Request,
body: CompletionRequest,
user_info: Dict[str, Any] = Depends(get_user_info)
):
api_key = user_info["key"]
client = get_client(api_key)
try:
# Handle different prompt types
prompt = body.prompt
if isinstance(prompt, list):
prompt = prompt[0] # Take the first prompt if it's a list
kwargs = {
"model": body.model,
"temperature": body.temperature,
"max_tokens": body.max_tokens,
"stream": body.stream,
"top_p": body.top_p,
"presence_penalty": body.presence_penalty,
"frequency_penalty": body.frequency_penalty,
}
if body.stream:
async def generate_stream():
response_stream = await asyncio.to_thread(
client.completions.create,
prompt=prompt,
**kwargs
)
total_tokens = 0
for chunk in response_stream:
if 'usage' in chunk and chunk['usage']:
total_tokens += chunk['usage'].get('total_tokens', 0)
yield f"data: {json.dumps(chunk)}\n\n"
# Log API usage at the end of streaming
if db:
db.log_api_usage(api_key, "/v1/completions", total_tokens, body.model)
yield "data: [DONE]\n\n"
return StreamingResponse(
generate_stream(),
media_type="text/event-stream"
)
else:
response = await asyncio.to_thread(
client.completions.create,
prompt=prompt,
**kwargs
)
# Log the API usage
if db and 'usage' in response:
total_tokens = response['usage'].get('total_tokens', 0)
db.log_api_usage(api_key, "/v1/completions", total_tokens, body.model)
return response
except Exception as e:
raise HTTPException(status_code=500, detail=f"Error generating completion: {str(e)}")
@app.get("/health")
async def health_check():
status_info = {"api": "ok"}
# Check MongoDB connection
if db:
try:
# Simple operation to check connection
db.api_keys_collection.find_one({})
status_info["database"] = "ok"
except Exception as e:
status_info["database"] = f"error: {str(e)}"
else:
status_info["database"] = "not configured"
# Add Hugging Face Space info
if hf_helper.is_in_space:
status_info["environment"] = "Hugging Face Space"
status_info["space_name"] = hf_helper.space_name
else:
status_info["environment"] = "Local"
return status_info
# API Key Management Endpoints
@app.post("/v1/api_keys", response_model=APIKeyResponse)
async def create_api_key(body: APIKeyCreate):
if not db:
raise HTTPException(status_code=500, detail="Database not configured")
try:
api_key = db.generate_api_key(body.user_id, body.name)
key_data = db.validate_api_key(api_key)
return {
"key": api_key,
"name": key_data["name"],
"created_at": key_data["created_at"].isoformat()
}
except Exception as e:
raise HTTPException(status_code=500, detail=f"Error creating API key: {str(e)}")
@app.get("/v1/api_keys")
async def list_api_keys(user_id: str):
if not db:
raise HTTPException(status_code=500, detail="Database not configured")
keys = db.get_user_api_keys(user_id)
for key in keys:
if "created_at" in key:
key["created_at"] = key["created_at"].isoformat()
if "last_used" in key and key["last_used"]:
key["last_used"] = key["last_used"].isoformat()
return {"keys": keys}
@app.post("/v1/api_keys/revoke")
async def revoke_api_key(api_key: str):
if not db:
raise HTTPException(status_code=500, detail="Database not configured")
success = db.revoke_api_key(api_key)
if not success:
raise HTTPException(status_code=404, detail="API key not found")
return {"message": "API key revoked successfully"}
# Clean up IP rotator clients on shutdown
@app.on_event("shutdown")
async def cleanup_clients():
for client in clients.values():
try:
if hasattr(client, 'ip_rotator') and client.ip_rotator:
client.ip_rotator.shutdown()
except:
pass
f __name__ == "__main__":
host = os.environ.get("HOST", "0.0.0.0")
port = int(os.environ.get("PORT", "7860"))
print(f"Starting PyScoutAI API on http://{host}:{port}")
print(f"Environment: {'Hugging Face Space' if hf_helper.is_in_space else 'Local'}")
uvicorn.run(
app,
host=host,
port=port,
reload=not hf_helper.is_in_space
)
|