File size: 12,087 Bytes
dc23f92 fd477b6 dc23f92 fd477b6 dc23f92 29e5453 dc23f92 29e5453 dc23f92 138926d dc23f92 138926d dc23f92 138926d dc23f92 138926d dc23f92 29e5453 60bdaa8 dc23f92 | 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 | """
Unified Document Extraction API - Docling + DocStrange
Deploy this as a SINGLE app on Hugging Face Spaces
Provides both Docling AND DocStrange extraction in one service
"""
import os
import sys
import tempfile
from pathlib import Path
from fastapi import FastAPI, File, UploadFile, HTTPException, Query
from fastapi.responses import JSONResponse
from fastapi.middleware.cors import CORSMiddleware
import uvicorn
# ============================================================================
# INITIALIZATION
# ============================================================================
# Docling setup
HAS_DOCLING = False
docling_converter = None
try:
from docling.document_converter import DocumentConverter
HAS_DOCLING = True
except ImportError:
pass
# DocStrange setup
HAS_DOCTSTRANGE = False
docstrange_extractor = None
try:
# Add docstrange to path
sys.path.insert(0, os.path.join(os.path.dirname(__file__), 'docstrange'))
from docstrange import DocumentExtractor
HAS_DOCTSTRANGE = True
except ImportError:
pass
app = FastAPI(
title="Unified Document Extraction API",
description="Extract documents using Docling OR DocStrange AI engines",
version="2.0.0"
)
# Allow CORS for DataSync integration
app.add_middleware(
CORSMiddleware,
allow_origins=["*"],
allow_credentials=True,
allow_methods=["*"],
allow_headers=["*"],
)
# ============================================================================
# LAZY INITIALIZATION
# ============================================================================
def get_docling_converter():
"""Get or create Docling converter"""
global docling_converter
if docling_converter is None and HAS_DOCLING:
docling_converter = DocumentConverter()
return docling_converter
def get_docstrange_extractor():
"""Get or create DocStrange extractor"""
global docstrange_extractor
if docstrange_extractor is None and HAS_DOCTSTRANGE:
# Auto-detect GPU
try:
import torch
gpu = torch.cuda.is_available()
except:
gpu = False
docstrange_extractor = DocumentExtractor(gpu=gpu)
return docstrange_extractor
# ============================================================================
# HEALTH & INFO ENDPOINTS
# ============================================================================
@app.get("/")
def root():
"""Health check"""
return {
"status": "ok",
"service": "Unified Document Extraction API",
"version": "2.0.0",
"engines": {
"docling": HAS_DOCLING,
"docstrange": HAS_DOCTSTRANGE
}
}
@app.get("/health")
def health():
"""Detailed health check"""
try:
import torch
gpu = torch.cuda.is_available()
vram = f"{torch.cuda.get_device_properties(0).total_mem/1024**3:.1f}GB" if gpu else "N/A"
except:
gpu = False
vram = "N/A"
return {
"status": "ok",
"gpu": gpu,
"vram": vram,
"engines": {
"docling": HAS_DOCLING,
"docstrange": HAS_DOCTSTRANGE
}
}
@app.get("/engines")
def list_engines():
"""List available extraction engines"""
return {
"engines": [
{
"id": "docling",
"name": "Docling AI",
"available": HAS_DOCLING,
"description": "Advanced document parsing with structure preservation"
},
{
"id": "docstrange",
"name": "DocStrange",
"available": HAS_DOCTSTRANGE,
"description": "GPU-accelerated intelligent document processing"
}
]
}
# ============================================================================
# EXTRACTION ENDPOINTS
# ============================================================================
@app.post("/convert")
async def convert_document(
file: UploadFile = File(...),
engine: str = Query("docling", description="Extraction engine: docling or docstrange"),
output_format: str = Query("markdown", description="Output format: markdown, json, tables")
):
"""
Convert document using specified engine
Args:
file: Document file (PDF, DOCX, XLSX, Images, etc.)
engine: docling or docstrange
output_format: markdown, json, tables
Returns: JSON with extracted data
"""
if not file.filename:
raise HTTPException(status_code=400, detail="No file provided")
# Validate engine
if engine not in ['docling', 'docstrange']:
raise HTTPException(status_code=400, detail=f"Unknown engine: {engine}. Use 'docling' or 'docstrange'")
# Check engine availability
if engine == 'docling' and not HAS_DOCLING:
raise HTTPException(status_code=503, detail="Docling engine not available")
if engine == 'docstrange' and not HAS_DOCTSTRANGE:
raise HTTPException(status_code=503, detail="DocStrange engine not available")
# Validate file extension
supported_extensions = ['.pdf', '.docx', '.xlsx', '.pptx', '.png', '.jpg', '.jpeg',
'.bmp', '.tiff', '.webp', '.gif', '.txt', '.html', '.md', '.csv']
ext = Path(file.filename).suffix.lower()
if ext not in supported_extensions:
raise HTTPException(status_code=400, detail=f"Unsupported format: {ext}")
try:
# Save uploaded file temporarily
with tempfile.NamedTemporaryFile(delete=False, suffix=ext) as tmp:
content = await file.read()
tmp.write(content)
tmp_path = tmp.name
# Extract using selected engine
if engine == 'docling':
result = _extract_with_docling(tmp_path, output_format)
else: # docstrange
result = _extract_with_docstrange(tmp_path, output_format)
# Cleanup
os.unlink(tmp_path)
return JSONResponse(content=result)
except Exception as e:
# Cleanup on error
if 'tmp_path' in locals():
try:
os.unlink(tmp_path)
except:
pass
raise HTTPException(status_code=500, detail=f"Extraction failed: {str(e)}")
@app.post("/convert/markdown")
async def convert_to_markdown(
file: UploadFile = File(...),
engine: str = Query("docling", description="docling or docstrange")
):
"""Extract document to markdown only (lightweight endpoint)"""
try:
with tempfile.NamedTemporaryFile(delete=False, suffix=Path(file.filename).suffix.lower()) as tmp:
content = await file.read()
tmp.write(content)
tmp_path = tmp.name
if engine == 'docling' and HAS_DOCLING:
converter = get_docling_converter()
result = converter.convert(tmp_path)
markdown = result.document.export_to_markdown()
elif engine == 'docstrange' and HAS_DOCTSTRANGE:
ext = get_docstrange_extractor()
result = ext.extract_document(tmp_path, output_format='markdown')
markdown = result.get('data', '')
else:
raise HTTPException(status_code=503, detail=f"{engine} engine not available")
os.unlink(tmp_path)
return {
"success": True,
"markdown": markdown,
"engine": engine,
"file_name": file.filename
}
except Exception as e:
if 'tmp_path' in locals():
try:
os.unlink(tmp_path)
except:
pass
raise HTTPException(status_code=500, detail=str(e))
@app.post("/convert/tables")
async def convert_tables(
file: UploadFile = File(...),
engine: str = Query("docling", description="docling or docstrange")
):
"""Extract tables only from document"""
try:
with tempfile.NamedTemporaryFile(delete=False, suffix=Path(file.filename).suffix.lower()) as tmp:
content = await file.read()
tmp.write(content)
tmp_path = tmp.name
tables_data = []
if engine == 'docling' and HAS_DOCLING:
converter = get_docling_converter()
result = converter.convert(tmp_path)
for table_idx, table in enumerate(result.document.tables):
try:
df = table.export_to_dataframe()
tables_data.append({
"table_index": table_idx,
"headers": list(df.columns),
"rows": df.to_dict('records'),
"row_count": len(df)
})
except:
pass
os.unlink(tmp_path)
return {
"success": True,
"tables": tables_data,
"tables_count": len(tables_data),
"engine": engine,
"file_name": file.filename
}
except Exception as e:
if 'tmp_path' in locals():
try:
os.unlink(tmp_path)
except:
pass
raise HTTPException(status_code=500, detail=str(e))
# ============================================================================
# ENGINE-SPECIFIC EXTRACTION FUNCTIONS
# ============================================================================
def _extract_with_docling(file_path, output_format):
"""Extract using Docling"""
converter = get_docling_converter()
result = converter.convert(file_path)
doc = result.document
response = {
"success": True,
"file_name": os.path.basename(file_path),
"engine": "docling",
"format": output_format,
"document": {
"markdown": doc.export_to_markdown(),
"num_pages": len(doc.pages) if hasattr(doc, 'pages') else 0,
"tables_count": len(doc.tables)
},
"metadata": {
"engine": "docling",
"model": "docling-default"
}
}
# Add tables if requested
if output_format in ['json', 'tables']:
tables_data = []
for table_idx, table in enumerate(doc.tables):
try:
df = table.export_to_dataframe()
tables_data.append({
"table_index": table_idx,
"rows": df.to_dict('records'),
"row_count": len(df)
})
except:
pass
response['document']['tables'] = tables_data
return response
def _extract_with_docstrange(file_path, output_format):
"""Extract using DocStrange"""
ext = get_docstrange_extractor()
result = ext.extract_document(file_path, output_format=output_format)
response = {
"success": True,
"file_name": os.path.basename(file_path),
"engine": "docstrange",
"format": result.get('format', output_format),
"data": result.get('data', {}),
"metadata": {
"engine": "docstrange",
"file_size": result.get('metadata', {}).get('file_size', 0),
"gpu_mode": result.get('metadata', {}).get('gpu_mode', False)
}
}
return response
# ============================================================================
# MAIN ENTRY POINT
# ============================================================================
if __name__ == "__main__":
print("\n" + "="*60)
print("Unified Document Extraction API")
print("="*60)
print(f"Docling: {'✅ Available' if HAS_DOCLING else '❌ Not installed'}")
print(f"DocStrange: {'✅ Available' if HAS_DOCTSTRANGE else '❌ Not installed'}")
print("="*60)
print("URL: http://localhost:7860")
print("Docs: http://localhost:7860/docs")
print("="*60 + "\n")
uvicorn.run(
"app:app",
host="0.0.0.0",
port=7860
)
|