Spaces:
Running
on
CPU Upgrade
Running
on
CPU Upgrade
File size: 22,417 Bytes
9781b82 0b7d0b0 9781b82 26b1877 0b7d0b0 9781b82 445a506 26b1877 844386f 9781b82 445a506 9781b82 0b7d0b0 fbe40ea 9781b82 0b7d0b0 fbe40ea 0b7d0b0 9781b82 445a506 9781b82 445a506 9781b82 445a506 9781b82 445a506 9781b82 445a506 9781b82 445a506 9781b82 445a506 9781b82 1b03edb 9781b82 445a506 8d6faeb 445a506 8d6faeb 445a506 0b7d0b0 445a506 8d6faeb 445a506 26b1877 8d6faeb 445a506 26b1877 445a506 26b1877 445a506 26b1877 445a506 0b7d0b0 445a506 0b7d0b0 445a506 9781b82 26b1877 9781b82 26b1877 9781b82 844386f 9781b82 ce5948a 445a506 ce5948a 445a506 ce5948a 445a506 0b7d0b0 445a506 0b7d0b0 445a506 9781b82 844386f 26b1877 844386f 26b1877 ce5948a 844386f 9781b82 643e32f ce5948a 844386f ce5948a 9781b82 ce5948a 1b03edb 9781b82 844386f 9781b82 ce5948a 844386f 9781b82 ce5948a 9781b82 ce5948a 9781b82 445a506 0b7d0b0 445a506 0b7d0b0 445a506 9781b82 445a506 26b1877 9781b82 26b1877 9781b82 844386f 9781b82 1b03edb 9781b82 445a506 0b7d0b0 445a506 0b7d0b0 445a506 9781b82 445a506 26b1877 9781b82 26b1877 9781b82 1b03edb 9781b82 445a506 0b7d0b0 445a506 0b7d0b0 445a506 9781b82 445a506 26b1877 9781b82 26b1877 9781b82 844386f 9781b82 844386f 2f5178f 445a506 2f5178f 445a506 0b7d0b0 445a506 0b7d0b0 445a506 844386f 26b1877 844386f 26b1877 844386f 2f5178f 643e32f 2f5178f 844386f 2f5178f 9781b82 |
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 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 |
import argparse
import io
from time import time
from typing import List, Optional
from abc import ABC, abstractmethod
import uvicorn
from fastapi import Depends, FastAPI, File, HTTPException, Query, Request, UploadFile, Form, Security
from fastapi.middleware.cors import CORSMiddleware
from fastapi.responses import JSONResponse, RedirectResponse, StreamingResponse
from fastapi.security import HTTPBearer, HTTPAuthorizationCredentials
from pydantic import BaseModel, field_validator, Field
from slowapi import Limiter
from slowapi.util import get_remote_address
import requests
from PIL import Image
# Import from auth.py
from utils.auth import get_current_user, get_current_user_with_admin, login, refresh_token, register, TokenResponse, Settings, LoginRequest, RegisterRequest, bearer_scheme
# Assuming these are in your project structure
from config.tts_config import SPEED, ResponseFormat, config as tts_config
from config.logging_config import logger
settings = Settings()
# FastAPI app setup with enhanced docs
app = FastAPI(
title="Dhwani API",
description="A multilingual AI-powered API supporting Indian languages for chat, text-to-speech, audio processing, and transcription. "
"**Authentication Guide:** \n"
#"1. Register a new user via `/v1/register` with a POST request containing `username` and `password` (requires admin access). \n"
"1. Obtain an access token by sending a POST request to `/v1/token` with `username` and `password`. \n"
"2. Click the 'Authorize' button (top-right), enter your access token (e.g., `your_access_token`) in the 'bearerAuth' field, and click 'Authorize'. \n"
"All protected endpoints require this token for access. \n"
#"Only the 'admin' user (default password: adminpass) can register new users.",
version="1.0.0",
redirect_slashes=False,
openapi_tags=[
{"name": "Chat", "description": "Chat-related endpoints"},
{"name": "Audio", "description": "Audio processing and TTS endpoints"},
{"name": "Translation", "description": "Text translation endpoints"},
{"name": "Authentication", "description": "User authentication and registration"},
{"name": "Utility", "description": "General utility endpoints"},
],
)
app.add_middleware(
CORSMiddleware,
allow_origins=["*"],
allow_credentials=False,
allow_methods=["*"],
allow_headers=["*"],
)
# Rate limiting based on user_id
limiter = Limiter(key_func=lambda request: get_current_user(request.scope.get("route").dependencies))
# Request/Response Models
class SpeechRequest(BaseModel):
input: str = Field(..., description="Text to convert to speech (max 1000 characters)")
voice: str = Field(..., description="Voice identifier for the TTS service")
model: str = Field(..., description="TTS model to use")
response_format: ResponseFormat = Field(tts_config.response_format, description="Audio format: mp3, flac, or wav")
speed: float = Field(SPEED, description="Speech speed (default: 1.0)")
@field_validator("input")
def input_must_be_valid(cls, v):
if len(v) > 1000:
raise ValueError("Input cannot exceed 1000 characters")
return v.strip()
@field_validator("response_format")
def validate_response_format(cls, v):
supported_formats = [ResponseFormat.MP3, ResponseFormat.FLAC, ResponseFormat.WAV]
if v not in supported_formats:
raise ValueError(f"Response format must be one of {[fmt.value for fmt in supported_formats]}")
return v
class Config:
schema_extra = {
"example": {
"input": "Hello, how are you?",
"voice": "female-1",
"model": "tts-model-1",
"response_format": "mp3",
"speed": 1.0
}
}
class TranscriptionResponse(BaseModel):
text: str = Field(..., description="Transcribed text from the audio")
class Config:
schema_extra = {"example": {"text": "Hello, how are you?"}}
class TextGenerationResponse(BaseModel):
text: str = Field(..., description="Generated text response")
class Config:
schema_extra = {"example": {"text": "Hi there, I'm doing great!"}}
class AudioProcessingResponse(BaseModel):
result: str = Field(..., description="Processed audio result")
class Config:
schema_extra = {"example": {"result": "Processed audio output"}}
# TTS Service Interface
class TTSService(ABC):
@abstractmethod
async def generate_speech(self, payload: dict) -> requests.Response:
pass
class ExternalTTSService(TTSService):
async def generate_speech(self, payload: dict) -> requests.Response:
try:
return requests.post(
settings.external_tts_url,
json=payload,
headers={"accept": "application/json", "Content-Type": "application/json"},
stream=True,
timeout=60
)
except requests.Timeout:
raise HTTPException(status_code=504, detail="External TTS API timeout")
except requests.RequestException as e:
raise HTTPException(status_code=500, detail=f"External TTS API error: {str(e)}")
def get_tts_service() -> TTSService:
return ExternalTTSService()
# Endpoints with enhanced Swagger docs
@app.get("/v1/health",
summary="Check API Health",
description="Returns the health status of the API and the current model in use.",
tags=["Utility"],
response_model=dict)
async def health_check():
return {"status": "healthy", "model": settings.llm_model_name}
@app.get("/",
summary="Redirect to Docs",
description="Redirects to the Swagger UI documentation.",
tags=["Utility"])
async def home():
return RedirectResponse(url="/docs")
@app.post("/v1/token",
response_model=TokenResponse,
summary="User Login",
description="Authenticate a user with username and password to obtain an access token. Copy the token and use it in the 'Authorize' button above.",
tags=["Authentication"],
responses={
200: {"description": "Successful login", "model": TokenResponse},
401: {"description": "Invalid username or password"}
})
async def token(login_request: LoginRequest):
return await login(login_request)
@app.post("/v1/refresh",
response_model=TokenResponse,
summary="Refresh Access Token",
description="Generate a new access token using an existing valid token.",
tags=["Authentication"],
responses={
200: {"description": "New token issued", "model": TokenResponse},
401: {"description": "Invalid or expired token"}
})
async def refresh(credentials: HTTPAuthorizationCredentials = Depends(bearer_scheme)):
return await refresh_token(credentials)
@app.post("/v1/register",
response_model=TokenResponse,
summary="Register New User",
description="Create a new user account and return an access token. Requires admin access (use 'admin' user with password 'adminpass' initially).",
tags=["Authentication"],
responses={
200: {"description": "User registered successfully", "model": TokenResponse},
400: {"description": "Username already exists"},
403: {"description": "Admin access required"}
})
async def register_user(
register_request: RegisterRequest,
current_user: str = Depends(get_current_user_with_admin) # Enforce admin-only access
):
return await register(register_request, current_user) # Pass current_user explicitly
@app.post("/v1/audio/speech",
summary="Generate Speech from Text",
description="Convert text to speech in the specified format using an external TTS service. Rate limited to 5 requests per minute per user. Requires authentication.",
tags=["Audio"],
responses={
200: {"description": "Audio stream", "content": {"audio/mp3": {"example": "Binary audio data"}}},
400: {"description": "Invalid input"},
401: {"description": "Unauthorized - Token required"},
429: {"description": "Rate limit exceeded"},
504: {"description": "TTS service timeout"}
})
@limiter.limit(settings.speech_rate_limit)
async def generate_audio(
request: Request,
speech_request: SpeechRequest = Depends(),
credentials: HTTPAuthorizationCredentials = Depends(bearer_scheme),
tts_service: TTSService = Depends(get_tts_service)
):
user_id = await get_current_user(credentials)
if not speech_request.input.strip():
raise HTTPException(status_code=400, detail="Input cannot be empty")
logger.info("Processing speech request", extra={
"endpoint": "/v1/audio/speech",
"input_length": len(speech_request.input),
"client_ip": get_remote_address(request),
"user_id": user_id
})
payload = {
"input": speech_request.input,
"voice": speech_request.voice,
"model": speech_request.model,
"response_format": speech_request.response_format.value,
"speed": speech_request.speed
}
response = await tts_service.generate_speech(payload)
response.raise_for_status()
headers = {
"Content-Disposition": f"inline; filename=\"speech.{speech_request.response_format.value}\"",
"Cache-Control": "no-cache",
"Content-Type": f"audio/{speech_request.response_format.value}"
}
return StreamingResponse(
response.iter_content(chunk_size=8192),
media_type=f"audio/{speech_request.response_format.value}",
headers=headers
)
class ChatRequest(BaseModel):
prompt: str = Field(..., description="Text prompt for chat (max 1000 characters)")
src_lang: str = Field("kan_Knda", description="Source language code (default: Kannada)")
@field_validator("prompt")
def prompt_must_be_valid(cls, v):
if len(v) > 1000:
raise ValueError("Prompt cannot exceed 1000 characters")
return v.strip()
class Config:
schema_extra = {
"example": {
"prompt": "Hello, how are you?",
"src_lang": "kan_Knda"
}
}
class ChatResponse(BaseModel):
response: str = Field(..., description="Generated chat response")
class Config:
schema_extra = {"example": {"response": "Hi there, I'm doing great!"}}
@app.post("/v1/chat",
response_model=ChatResponse,
summary="Chat with AI",
description="Generate a chat response from a prompt in the specified language. Rate limited to 100 requests per minute per user. Requires authentication.",
tags=["Chat"],
responses={
200: {"description": "Chat response", "model": ChatResponse},
400: {"description": "Invalid prompt"},
401: {"description": "Unauthorized - Token required"},
429: {"description": "Rate limit exceeded"},
504: {"description": "Chat service timeout"}
})
@limiter.limit(settings.chat_rate_limit)
async def chat(
request: Request,
chat_request: ChatRequest,
credentials: HTTPAuthorizationCredentials = Depends(bearer_scheme)
):
user_id = await get_current_user(credentials)
if not chat_request.prompt:
raise HTTPException(status_code=400, detail="Prompt cannot be empty")
logger.info(f"Received prompt: {chat_request.prompt}, src_lang: {chat_request.src_lang}, user_id: {user_id}")
try:
external_url = "https://slabstech-dhwani-internal-api-server.hf.space/v1/chat"
payload = {
"prompt": chat_request.prompt,
"src_lang": chat_request.src_lang,
"tgt_lang": chat_request.src_lang
}
response = requests.post(
external_url,
json=payload,
headers={
"accept": "application/json",
"Content-Type": "application/json"
},
timeout=60
)
response.raise_for_status()
response_data = response.json()
response_text = response_data.get("response", "")
logger.info(f"Generated Chat response from external API: {response_text}")
return ChatResponse(response=response_text)
except requests.Timeout:
logger.error("External chat API request timed out")
raise HTTPException(status_code=504, detail="Chat service timeout")
except requests.RequestException as e:
logger.error(f"Error calling external chat API: {str(e)}")
raise HTTPException(status_code=500, detail=f"Chat failed: {str(e)}")
except Exception as e:
logger.error(f"Error processing request: {str(e)}")
raise HTTPException(status_code=500, detail=f"An error occurred: {str(e)}")
@app.post("/v1/process_audio/",
response_model=AudioProcessingResponse,
summary="Process Audio File",
description="Process an uploaded audio file in the specified language. Rate limited to 100 requests per minute per user. Requires authentication.",
tags=["Audio"],
responses={
200: {"description": "Processed result", "model": AudioProcessingResponse},
401: {"description": "Unauthorized - Token required"},
429: {"description": "Rate limit exceeded"},
504: {"description": "Audio processing timeout"}
})
@limiter.limit(settings.chat_rate_limit)
async def process_audio(
request: Request,
file: UploadFile = File(..., description="Audio file to process"),
language: str = Query(..., enum=["kannada", "hindi", "tamil"], description="Language of the audio"),
credentials: HTTPAuthorizationCredentials = Depends(bearer_scheme)
):
user_id = await get_current_user(credentials)
logger.info("Processing audio processing request", extra={
"endpoint": "/v1/process_audio",
"filename": file.filename,
"client_ip": get_remote_address(request),
"user_id": user_id
})
start_time = time()
try:
file_content = await file.read()
files = {"file": (file.filename, file_content, file.content_type)}
external_url = f"{settings.external_audio_proc_url}/process_audio/?language={language}"
response = requests.post(
external_url,
files=files,
headers={"accept": "application/json"},
timeout=60
)
response.raise_for_status()
processed_result = response.json().get("result", "")
logger.info(f"Audio processing completed in {time() - start_time:.2f} seconds")
return AudioProcessingResponse(result=processed_result)
except requests.Timeout:
raise HTTPException(status_code=504, detail="Audio processing service timeout")
except requests.RequestException as e:
logger.error(f"Audio processing request failed: {str(e)}")
raise HTTPException(status_code=500, detail=f"Audio processing failed: {str(e)}")
@app.post("/v1/transcribe/",
response_model=TranscriptionResponse,
summary="Transcribe Audio File",
description="Transcribe an uploaded audio file into text in the specified language. Requires authentication.",
tags=["Audio"],
responses={
200: {"description": "Transcription result", "model": TranscriptionResponse},
401: {"description": "Unauthorized - Token required"},
504: {"description": "Transcription service timeout"}
})
async def transcribe_audio(
file: UploadFile = File(..., description="Audio file to transcribe"),
language: str = Query(..., enum=["kannada", "hindi", "tamil"], description="Language of the audio"),
credentials: HTTPAuthorizationCredentials = Depends(bearer_scheme)
):
user_id = await get_current_user(credentials)
start_time = time()
try:
file_content = await file.read()
files = {"file": (file.filename, file_content, file.content_type)}
external_url = f"{settings.external_asr_url}/transcribe/?language={language}"
response = requests.post(
external_url,
files=files,
headers={"accept": "application/json"},
timeout=60
)
response.raise_for_status()
transcription = response.json().get("text", "")
return TranscriptionResponse(text=transcription)
except requests.Timeout:
raise HTTPException(status_code=504, detail="Transcription service timeout")
except requests.RequestException as e:
raise HTTPException(status_code=500, detail=f"Transcription failed: {str(e)}")
@app.post("/v1/chat_v2",
response_model=TranscriptionResponse,
summary="Chat with Image (V2)",
description="Generate a response from a text prompt and optional image. Rate limited to 100 requests per minute per user. Requires authentication.",
tags=["Chat"],
responses={
200: {"description": "Chat response", "model": TranscriptionResponse},
400: {"description": "Invalid prompt"},
401: {"description": "Unauthorized - Token required"},
429: {"description": "Rate limit exceeded"}
})
@limiter.limit(settings.chat_rate_limit)
async def chat_v2(
request: Request,
prompt: str = Form(..., description="Text prompt for chat"),
image: UploadFile = File(default=None, description="Optional image to accompany the prompt"),
credentials: HTTPAuthorizationCredentials = Depends(bearer_scheme)
):
user_id = await get_current_user(credentials)
if not prompt:
raise HTTPException(status_code=400, detail="Prompt cannot be empty")
logger.info("Processing chat_v2 request", extra={
"endpoint": "/v1/chat_v2",
"prompt_length": len(prompt),
"has_image": bool(image),
"client_ip": get_remote_address(request),
"user_id": user_id
})
try:
image_data = Image.open(await image.read()) if image else None
response_text = f"Processed: {prompt}" + (" with image" if image_data else "")
return TranscriptionResponse(text=response_text)
except Exception as e:
logger.error(f"Chat_v2 processing failed: {str(e)}", exc_info=True)
raise HTTPException(status_code=500, detail=f"An error occurred: {str(e)}")
class TranslationRequest(BaseModel):
sentences: List[str] = Field(..., description="List of sentences to translate")
src_lang: str = Field(..., description="Source language code")
tgt_lang: str = Field(..., description="Target language code")
class Config:
schema_extra = {
"example": {
"sentences": ["Hello", "How are you?"],
"src_lang": "en",
"tgt_lang": "kan_Knda"
}
}
class TranslationResponse(BaseModel):
translations: List[str] = Field(..., description="Translated sentences")
class Config:
schema_extra = {"example": {"translations": ["ನಮಸ್ಕಾರ", "ನೀವು ಹೇಗಿದ್ದೀರಿ?"]}}
@app.post("/v1/translate",
response_model=TranslationResponse,
summary="Translate Text",
description="Translate a list of sentences from source to target language. Requires authentication.",
tags=["Translation"],
responses={
200: {"description": "Translation result", "model": TranslationResponse},
401: {"description": "Unauthorized - Token required"},
500: {"description": "Translation service error"},
504: {"description": "Translation service timeout"}
})
async def translate(
request: TranslationRequest,
credentials: HTTPAuthorizationCredentials = Depends(bearer_scheme)
):
user_id = await get_current_user(credentials)
logger.info(f"Received translation request: {request.dict()}, user_id: {user_id}")
external_url = f"https://slabstech-dhwani-internal-api-server.hf.space/translate?src_lang={request.src_lang}&tgt_lang={request.tgt_lang}"
payload = {
"sentences": request.sentences,
"src_lang": request.src_lang,
"tgt_lang": request.tgt_lang
}
try:
response = requests.post(
external_url,
json=payload,
headers={
"accept": "application/json",
"Content-Type": "application/json"
},
timeout=60
)
response.raise_for_status()
response_data = response.json()
translations = response_data.get("translations", [])
if not translations or len(translations) != len(request.sentences):
logger.warning(f"Unexpected response format: {response_data}")
raise HTTPException(status_code=500, detail="Invalid response from translation service")
logger.info(f"Translation successful: {translations}")
return TranslationResponse(translations=translations)
except requests.Timeout:
logger.error("Translation request timed out")
raise HTTPException(status_code=504, detail="Translation service timeout")
except requests.RequestException as e:
logger.error(f"Error during translation: {str(e)}")
raise HTTPException(status_code=500, detail=f"Translation failed: {str(e)}")
except ValueError as e:
logger.error(f"Invalid JSON response: {str(e)}")
raise HTTPException(status_code=500, detail="Invalid response format from translation service")
if __name__ == "__main__":
parser = argparse.ArgumentParser(description="Run the FastAPI server.")
parser.add_argument("--port", type=int, default=settings.port, help="Port to run the server on.")
parser.add_argument("--host", type=str, default=settings.host, help="Host to run the server on.")
args = parser.parse_args()
uvicorn.run(app, host=args.host, port=args.port) |