Spaces:
Running
Running
File size: 16,945 Bytes
2909918 | 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 | """
Multimodal Translation API Routes
Handles image, document, and website translation
"""
import asyncio
import logging
import base64
import tempfile
import os
from typing import Optional, Dict, Any
from datetime import datetime
from fastapi import APIRouter, HTTPException, Depends, UploadFile, File, Form
from pydantic import BaseModel, Field
from utils.auth import verify_platform_token
from services.multimodal_translation_service import multimodal_translator
from services.translation_service import unified_translation_service as real_translation_service
from services.cache_service import cache_service
logger = logging.getLogger(__name__)
router = APIRouter(prefix="/multimodal", tags=["multimodal"])
class ImageTranslationRequest(BaseModel):
"""Request model for image translation"""
image_base64: str = Field(..., description="Base64 encoded image data")
mime_type: str = Field(..., description="MIME type of the image")
source_language: Optional[str] = Field(None, description="Source language code")
target_language: str = Field(..., description="Target language code")
enhance_image: bool = Field(default=True, description="Enhance image for better OCR")
annotate_image: bool = Field(default=False, description="Create annotated image with translated text")
class DocumentTranslationRequest(BaseModel):
"""Request model for document translation"""
document_base64: str = Field(..., description="Base64 encoded document data")
mime_type: str = Field(..., description="MIME type of the document")
file_name: str = Field(..., description="Original file name")
source_language: Optional[str] = Field(None, description="Source language code")
target_language: str = Field(..., description="Target language code")
preserve_format: bool = Field(default=True, description="Preserve document formatting")
class WebsiteTranslationRequest(BaseModel):
"""Request model for website translation"""
url: str = Field(..., description="Website URL to translate")
source_language: Optional[str] = Field(None, description="Source language code")
target_language: str = Field(..., description="Target language code")
extract_images: bool = Field(default=False, description="Extract and translate images")
max_pages: int = Field(default=1, min=1, max=10, description="Maximum pages to process")
class ImageTranslationResponse(BaseModel):
"""Response model for image translation"""
original_text: str
translated_text: str
detected_language: str
target_language: str
ocr_confidence: float
translation_confidence: float
quality_score: float
model: str
image_regions: list
processing_time: float
annotated_image: Optional[str] = None
class DocumentTranslationResponse(BaseModel):
"""Response model for document translation"""
original_text: str
translated_text: str
detected_language: str
target_language: str
confidence: float
quality_score: float
model: str
pages: int
processing_time: float
metadata: dict
class WebsiteTranslationResponse(BaseModel):
"""Response model for website translation"""
original_text: str
translated_text: str
detected_language: str
target_language: str
confidence: float
quality_score: float
model: str
title: str
url: str
images: list
pages: int
processing_time: float
metadata: dict
@router.post("/image", response_model=ImageTranslationResponse)
async def translate_image(
request: ImageTranslationRequest,
):
"""Translate text from image using OCR"""
start_time = datetime.now()
try:
logger.info(f"Image translation request: {request.mime_type}, target: {request.target_language}")
# Decode base64 image
try:
image_data = base64.b64decode(request.image_base64)
except Exception as e:
raise HTTPException(status_code=400, detail=f"Invalid base64 image data: {str(e)}")
# Save to temporary file
with tempfile.NamedTemporaryFile(delete=False, suffix=f".{request.mime_type.split('/')[-1]}") as tmp_file:
tmp_file.write(image_data)
tmp_path = tmp_file.name
try:
# Translate image
result = await multimodal_translator.translate_image(
image_path=tmp_path,
target_lang=request.target_language,
source_lang=request.source_language,
enhance_image=request.enhance_image,
annotate_image=request.annotate_image
)
# Convert annotated image to base64 if available
annotated_image_b64 = None
if result.annotated_image is not None and request.annotate_image:
import cv2
_, buffer = cv2.imencode('.jpg', result.annotated_image)
annotated_image_b64 = base64.b64encode(buffer).decode('utf-8')
processing_time = (datetime.now() - start_time).total_seconds()
return ImageTranslationResponse(
original_text=result.original_text,
translated_text=result.translated_text,
detected_language=result.detected_language,
target_language=result.target_language,
ocr_confidence=result.ocr_confidence,
translation_confidence=result.translation_confidence,
quality_score=min(result.ocr_confidence, result.translation_confidence),
model="multimodal-ocr",
image_regions=result.image_regions,
processing_time=processing_time,
annotated_image=annotated_image_b64
)
finally:
# Clean up temporary file
try:
os.unlink(tmp_path)
except Exception:
pass
except Exception as e:
logger.error(f"Image translation failed: {str(e)}")
raise HTTPException(status_code=500, detail=f"Image translation failed: {str(e)}")
@router.post("/document", response_model=DocumentTranslationResponse)
async def translate_document(
request: DocumentTranslationRequest,
):
"""Translate document content"""
start_time = datetime.now()
try:
logger.info(f"Document translation request: {request.file_name}, target: {request.target_language}")
# Decode base64 document
try:
document_data = base64.b64decode(request.document_base64)
except Exception as e:
raise HTTPException(status_code=400, detail=f"Invalid base64 document data: {str(e)}")
# Save to temporary file
file_extension = os.path.splitext(request.file_name)[1] or '.txt'
with tempfile.NamedTemporaryFile(delete=False, suffix=file_extension) as tmp_file:
tmp_file.write(document_data)
tmp_path = tmp_file.name
try:
# Extract text from document
from utils.file_parser import file_parser
text_content, metadata = file_parser.parse_file(tmp_path)
if not text_content.strip():
raise HTTPException(status_code=400, detail="No text content found in document")
# Detect language if needed
source_lang = request.source_language
if not source_lang:
detection_result = await real_translation_service.detect_language(text_content[:1000])
source_lang = detection_result['language']
# Translate text
if len(text_content) > 500:
# Use long text translation for large documents
translation_result = await real_translation_service.translate_long_text(
text=text_content,
source_lang=source_lang,
target_lang=request.target_language
)
else:
# Use regular translation for small documents
translation_result = await real_translation_service.translate(
text=text_content,
source_lang=source_lang,
target_lang=request.target_language
)
processing_time = (datetime.now() - start_time).total_seconds()
return DocumentTranslationResponse(
original_text=text_content,
translated_text=translation_result.translated_text,
detected_language=source_lang,
target_language=request.target_language,
confidence=translation_result.confidence_score,
quality_score=translation_result.quality_score or 0.95,
model=translation_result.model_used or "document-translator",
pages=metadata.get('pages', 1),
processing_time=processing_time,
metadata=metadata
)
finally:
# Clean up temporary file
try:
os.unlink(tmp_path)
except Exception:
pass
except Exception as e:
logger.error(f"Document translation failed: {str(e)}")
raise HTTPException(status_code=500, detail=f"Document translation failed: {str(e)}")
@router.post("/website", response_model=WebsiteTranslationResponse)
async def translate_website(
request: WebsiteTranslationRequest,
_: str = Depends(verify_platform_token)
):
"""Translate website content"""
start_time = datetime.now()
try:
logger.info(f"Website translation request: {request.url}, target: {request.target_language}")
# Web scraping and content extraction
import requests
from bs4 import BeautifulSoup
# Fetch website content
headers = {
'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36'
}
response = requests.get(request.url, headers=headers, timeout=30)
response.raise_for_status()
# Parse HTML content
soup = BeautifulSoup(response.content, 'html.parser')
# Extract title
title = soup.find('title')
title_text = title.get_text().strip() if title else "Untitled"
# Extract main text content
# Remove script and style elements
for script in soup(["script", "style"]):
script.decompose()
# Get text content
text_content = soup.get_text()
# Clean up text
lines = (line.strip() for line in text_content.splitlines())
chunks = (phrase.strip() for line in lines for phrase in line.split(" "))
text_content = ' '.join(chunk for chunk in chunks if chunk)
if not text_content.strip():
raise HTTPException(status_code=400, detail="No text content found on website")
# Detect language if needed
source_lang = request.source_language
if not source_lang:
detection_result = await real_translation_service.detect_language(text_content[:1000])
source_lang = detection_result['language']
# Translate text
if len(text_content) > 500:
# Use long text translation for large websites
translation_result = await real_translation_service.translate_long_text(
text=text_content,
source_lang=source_lang,
target_lang=request.target_language
)
else:
# Use regular translation for small websites
translation_result = await real_translation_service.translate(
text=text_content,
source_lang=source_lang,
target_lang=request.target_language
)
# Extract images if requested
images = []
if request.extract_images:
img_tags = soup.find_all('img')
for img in img_tags[:10]: # Limit to 10 images
src = img.get('src')
if src:
# Convert relative URLs to absolute
if src.startswith('//'):
src = 'https:' + src
elif src.startswith('/'):
from urllib.parse import urljoin
src = urljoin(request.url, src)
images.append({
'src': src,
'alt': img.get('alt', ''),
'title': img.get('title', '')
})
processing_time = (datetime.now() - start_time).total_seconds()
return WebsiteTranslationResponse(
original_text=text_content,
translated_text=translation_result.translated_text,
detected_language=source_lang,
target_language=request.target_language,
confidence=translation_result.confidence_score,
quality_score=translation_result.quality_score or 0.95,
model=translation_result.model_used or "website-translator",
title=title_text,
url=request.url,
images=images,
pages=1, # Single page for now
processing_time=processing_time,
metadata={
'user_agent': headers['User-Agent'],
'status_code': response.status_code,
'content_type': response.headers.get('content-type', ''),
'content_length': len(response.content)
}
)
except requests.RequestException as e:
logger.error(f"Website request failed: {str(e)}")
raise HTTPException(status_code=400, detail=f"Failed to fetch website: {str(e)}")
except Exception as e:
logger.error(f"Website translation failed: {str(e)}")
raise HTTPException(status_code=500, detail=f"Website translation failed: {str(e)}")
@router.get("/supported-types")
async def get_supported_types(_: str = Depends(verify_platform_token)):
"""Get supported file types for multimodal translation"""
return {
"success": True,
"data": {
"images": {
"extensions": [".jpg", ".jpeg", ".png", ".gif", ".bmp", ".webp", ".tiff", ".svg"],
"mime_types": ["image/jpeg", "image/jpg", "image/png", "image/gif", "image/bmp", "image/webp", "image/tiff", "image/svg+xml"],
"max_size": "10MB",
"features": ["OCR", "Text Detection", "Context Analysis", "Quality Scoring"]
},
"documents": {
"extensions": [".pdf", ".docx", ".doc", ".txt", ".rtf"],
"mime_types": ["application/pdf", "application/vnd.openxmlformats-officedocument.wordprocessingml.document", "application/msword", "text/plain", "application/rtf"],
"max_size": "10MB",
"features": ["Text Extraction", "Format Preservation", "Batch Processing", "Quality Validation"]
},
"websites": {
"features": ["Web Scraping", "Content Extraction", "Image Translation", "Multi-page Support"],
"max_pages": 10,
"supported_domains": "All public websites"
}
}
}
@router.get("/health")
async def multimodal_health_check(_: str = Depends(verify_platform_token)):
"""Health check for multimodal translation services"""
try:
# Check OCR engines
ocr_engines = multimodal_translator.ocr_engines.keys()
return {
"success": True,
"data": {
"status": "healthy",
"services": {
"image_translation": len(ocr_engines) > 0,
"document_translation": True,
"website_translation": True,
"ocr_engines": list(ocr_engines),
},
"timestamp": datetime.now().isoformat(),
}
}
except Exception as e:
logger.error(f"Multimodal health check failed: {str(e)}")
return {
"success": False,
"error": "Health check failed",
"details": str(e),
}
|