File size: 19,531 Bytes
1add76f 4c9673e 1add76f 4c9673e 1add76f 4c9673e 585eacf 1add76f 4c9673e 1add76f 4c9673e e716472 1add76f 54fdaaa e716472 54fdaaa 1add76f ba54c7e 1add76f 00b61f3 1add76f e716472 1add76f 54fdaaa 1add76f 54fdaaa 1add76f 54fdaaa 1add76f 00b61f3 e716472 1add76f ba54c7e 1add76f ba54c7e 9d930b9 cd7918d 9cfc8cf ba54c7e 9d930b9 ba54c7e a9089e1 9d930b9 ba54c7e cd7918d ba54c7e 1add76f e716472 ba54c7e 1add76f ba54c7e cd7918d ba54c7e 1add76f cd7918d 9d930b9 1add76f 470cbeb 1add76f 470cbeb 291c0bb 1add76f 470cbeb 1add76f e716472 1add76f e716472 470cbeb 1add76f ba54c7e cd7918d 1add76f ba54c7e 1add76f e716472 291c0bb 1add76f 470cbeb 291c0bb 470cbeb 291c0bb 470cbeb 291c0bb 470cbeb 291c0bb 470cbeb 291c0bb e716472 470cbeb e716472 291c0bb e716472 470cbeb 291c0bb 470cbeb 291c0bb 1add76f ba54c7e 1add76f e716472 1add76f 291c0bb 1add76f 291c0bb 1add76f 291c0bb 1add76f 291c0bb 1add76f 4c9673e 585eacf 4c9673e 585eacf 4c9673e 585eacf 4c9673e 585eacf 4c9673e 585eacf 4c9673e 585eacf 4c9673e 585eacf 4c9673e 585eacf 4c9673e 585eacf 4c9673e 585eacf 4c9673e 585eacf 4c9673e 585eacf 4c9673e 585eacf 4c9673e 585eacf 4c9673e 585eacf 4c9673e 1add76f | 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 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 | """
SOCAR Hackathon - Complete API with /ocr and /llm endpoints
Optimized based on comprehensive benchmarking:
- OCR: Llama-4-Maverick-17B (87.75% CSR)
- LLM: citation_focused + vanilla_k3 + Llama-4-Maverick (55.67% score)
"""
import os
import re
import time
import base64
import gc
from typing import List, Dict
from pathlib import Path
from io import BytesIO
import fitz # PyMuPDF
from PIL import Image
from fastapi import FastAPI, HTTPException, File, UploadFile, Request
from fastapi.middleware.cors import CORSMiddleware
from fastapi.middleware.trustedhost import TrustedHostMiddleware
from fastapi.staticfiles import StaticFiles
from fastapi.templating import Jinja2Templates
from fastapi.responses import Response
from starlette.middleware.base import BaseHTTPMiddleware
from pydantic import BaseModel
from dotenv import load_dotenv
from openai import AzureOpenAI
from pinecone import Pinecone
from sentence_transformers import SentenceTransformer
# Load environment variables
load_dotenv()
# Get the directory where main.py is located for absolute path resolution
BASE_DIR = Path(__file__).resolve().parent
# Initialize FastAPI app
app = FastAPI(
title="SOCAR Historical Documents AI System",
description="RAG-based chatbot for SOCAR oil & gas historical documents with OCR capabilities",
version="1.0.0"
)
# Security Headers Middleware for production
class SecurityHeadersMiddleware(BaseHTTPMiddleware):
"""Add security headers to all responses for production deployment."""
async def dispatch(self, request: Request, call_next):
response = await call_next(request)
# Only add security headers in production (when HTTPS is enabled)
if os.getenv("PRODUCTION", "false").lower() == "true":
response.headers["Strict-Transport-Security"] = "max-age=63072000; includeSubDomains; preload"
response.headers["X-Content-Type-Options"] = "nosniff"
response.headers["X-Frame-Options"] = "SAMEORIGIN"
response.headers["X-XSS-Protection"] = "1; mode=block"
response.headers["Referrer-Policy"] = "strict-origin-when-cross-origin"
response.headers["Permissions-Policy"] = "geolocation=(), microphone=(), camera=()"
return response
# Add security headers middleware
app.add_middleware(SecurityHeadersMiddleware)
# Trusted Host Middleware for production (prevents host header attacks)
trusted_hosts = os.getenv("TRUSTED_HOSTS", "*").split(",")
if trusted_hosts != ["*"]:
app.add_middleware(TrustedHostMiddleware, allowed_hosts=trusted_hosts)
# CORS middleware - configurable for production
# In production, set ALLOWED_ORIGINS environment variable to your domain(s)
# Example: ALLOWED_ORIGINS=https://yourdomain.com,https://www.yourdomain.com
allowed_origins = os.getenv("ALLOWED_ORIGINS", "*").split(",")
app.add_middleware(
CORSMiddleware,
allow_origins=allowed_origins if allowed_origins != ["*"] else ["*"],
allow_credentials=True,
allow_methods=["GET", "POST", "OPTIONS"],
allow_headers=["Content-Type", "Authorization", "X-Requested-With"],
)
# Mount static files and templates using absolute paths for production reliability
STATIC_DIR = BASE_DIR / "static"
TEMPLATES_DIR = BASE_DIR / "templates"
app.mount("/static", StaticFiles(directory=str(STATIC_DIR)), name="static")
templates = Jinja2Templates(directory=str(TEMPLATES_DIR))
# Initialize clients (lazy loading for faster startup)
azure_client = None
pinecone_index = None
embedding_model = None
def get_azure_client():
"""Lazy load Azure OpenAI client"""
global azure_client
if azure_client is None:
azure_client = AzureOpenAI(
api_key=os.getenv("AZURE_OPENAI_API_KEY"),
api_version=os.getenv("AZURE_OPENAI_API_VERSION", "2024-08-01-preview"),
azure_endpoint=os.getenv("AZURE_OPENAI_ENDPOINT")
)
return azure_client
def get_pinecone_index():
"""Lazy load Pinecone index"""
global pinecone_index
if pinecone_index is None:
pc = Pinecone(api_key=os.getenv("PINECONE_API_KEY"))
pinecone_index = pc.Index(os.getenv("PINECONE_INDEX_NAME", "hackathon"))
return pinecone_index
def get_embedding_model():
"""Lazy load local embedding model (same as ingestion: BAAI/bge-large-en-v1.5)"""
global embedding_model
if embedding_model is None:
print("Loading BAAI/bge-large-en-v1.5 embedding model...")
embedding_model = SentenceTransformer("BAAI/bge-large-en-v1.5")
print("✅ Embedding model loaded")
return embedding_model
def get_embedding(text: str) -> List[float]:
"""
Generate embedding for semantic search.
Uses BAAI/bge-large-en-v1.5 (same as document ingestion) for consistent embeddings.
Returns 1024-dimensional vector matching Pinecone index.
"""
try:
model = get_embedding_model()
embedding = model.encode(text).tolist()
return embedding
except Exception as e:
print(f"Embedding error: {e}")
# Return zero vector (will not match documents, but API won't crash)
return [0.0] * 1024
# Request/Response models
class ChatMessage(BaseModel):
role: str
content: str
class ChatRequest(BaseModel):
messages: List[ChatMessage]
temperature: float = 0.2
max_tokens: int = 1000
class ChatResponse(BaseModel):
response: str
sources: List[Dict[str, str]]
response_time: float
model: str
class QuestionRequest(BaseModel):
question: str
temperature: float = 0.2
max_tokens: int = 1000
class AnswerResponse(BaseModel):
answer: str
sources: List[Dict]
response_time: float
def retrieve_documents(query: str, top_k: int = 3) -> List[Dict]:
"""
Retrieve relevant documents from Pinecone vector database.
Best strategy from benchmark: vanilla top-3 with BAAI/bge-large-en-v1.5
Uses BAAI/bge-large-en-v1.5 embeddings (1024-dim, same as ingestion).
"""
index = get_pinecone_index()
# Generate query embedding
query_embedding = get_embedding(query)
# Search vector database
results = index.query(
vector=query_embedding,
top_k=top_k,
include_metadata=True
)
# Extract documents
documents = []
for match in results['matches']:
# Ensure page_number is always an integer (Pinecone may return float)
page_num = match['metadata'].get('page_number', 0)
page_num = int(page_num) if isinstance(page_num, (int, float)) else 0
documents.append({
'pdf_name': match['metadata'].get('pdf_name', 'unknown.pdf'),
'page_number': page_num,
'content': match['metadata'].get('content', ''), # Changed from 'text' to 'content'
'score': match.get('score', 0.0)
})
return documents
def generate_answer(query: str, documents: List[Dict], temperature: float = 0.2, max_tokens: int = 1000) -> tuple[str, float]:
"""
Generate answer using best-performing configuration.
Model: Llama-4-Maverick-17B (open-source)
Prompt: citation_focused (best citation score: 73.33%)
"""
client = get_azure_client()
# Build context from retrieved documents
context_parts = []
for i, doc in enumerate(documents, 1):
context_parts.append(
f"Sənəd {i} (Mənbə: {doc['pdf_name']}, Səhifə {doc['page_number']}):\n{doc['content']}"
)
context = "\n\n".join(context_parts)
# Citation-focused prompt (best performer: 55.67% score)
prompt = f"""Siz SOCAR-ın tarixi sənədlər üzrə mütəxəssis köməkçisisiniz.
ÖNƏMLİ: Hər bir faktı mütləq mənbə ilə təsdiqləyin (PDF adı və səhifə nömrəsi).
Kontekst:
{context}
Sual: {query}
Cavab verərkən:
1. Dəqiq faktlar yazın
2. Hər faktı mənbə ilə göstərin: (PDF: fayl_adı.pdf, Səhifə: X) - səhifə nömrəsini tam ədəd (integer) olaraq yazın, məsələn "Səhifə: 11" (11.0 yox)
3. Kontekstdə olmayan məlumat əlavə etməyin"""
try:
start_time = time.time()
# Use Llama-4-Maverick (open-source, best performer)
response = client.chat.completions.create(
model="Llama-4-Maverick-17B-128E-Instruct-FP8",
messages=[{"role": "user", "content": prompt}],
temperature=temperature,
max_tokens=max_tokens
)
elapsed = time.time() - start_time
answer = response.choices[0].message.content
return answer, elapsed
except Exception as e:
raise HTTPException(status_code=500, detail=f"LLM Error: {str(e)}")
@app.get("/")
async def root(request: Request):
"""Serve the frontend web application"""
return templates.TemplateResponse("index.html", {"request": request})
@app.get("/health")
async def health():
"""Detailed health check"""
try:
# Check if services are initialized
index = get_pinecone_index()
stats = index.describe_index_stats()
return {
"status": "healthy",
"pinecone": {
"connected": True,
"total_vectors": stats.get('total_vector_count', 0)
},
"azure_openai": "connected",
"embedding_model": "loaded"
}
except Exception as e:
return {
"status": "degraded",
"error": str(e)
}
@app.post("/llm")
async def llm_endpoint(request: Request):
"""
LLM chatbot endpoint for SOCAR historical documents.
Uses RAG (Retrieval Augmented Generation) with:
- Embedding: BAAI/bge-large-en-v1.5 @ 1024-dim (local model)
- Retrieval: Top-3 documents (Pinecone)
- LLM: Llama-4-Maverick-17B (open-source)
- Prompt: Citation-focused
Expected performance:
- Response time: ~3.6s
- LLM Judge Score: 55.67%
- Citation Score: 73.33%
Accepts two formats:
1. QuestionRequest: {"question": "...", "temperature": 0.2, "max_tokens": 1000}
2. ChatRequest: {"messages": [{"role": "user", "content": "..."}], ...}
ALWAYS returns: {"answer": str, "sources": List[Dict]}
"""
try:
# Parse request body
try:
body = await request.json()
except:
# Empty or invalid JSON - return error in expected format
return AnswerResponse(
answer="Error: Invalid JSON in request body. Please send valid JSON with 'question' field.",
sources=[],
response_time=0.0
)
# Handle list format (validator sends list directly)
if isinstance(body, list):
# Validator format: [{"role": "user", "content": "..."}]
user_messages = [msg for msg in body if isinstance(msg, dict) and msg.get("role") == "user"]
if not user_messages:
return AnswerResponse(
answer="Error: No user message found in messages array.",
sources=[],
response_time=0.0
)
query = user_messages[-1].get("content")
if not query or not query.strip():
return AnswerResponse(
answer="Error: Empty message content provided.",
sources=[],
response_time=0.0
)
temperature = 0.2
max_tokens = 1000
# Determine request format and extract query
elif "question" in body:
# QuestionRequest format
query = body.get("question")
if not query or not query.strip():
return AnswerResponse(
answer="Error: Empty question provided. Please provide a valid question.",
sources=[],
response_time=0.0
)
temperature = body.get("temperature", 0.2)
max_tokens = body.get("max_tokens", 1000)
elif "messages" in body:
# ChatRequest format
messages = body.get("messages", [])
if not messages:
return AnswerResponse(
answer="Error: No messages provided in request.",
sources=[],
response_time=0.0
)
user_messages = [msg for msg in messages if msg.get("role") == "user"]
if not user_messages:
return AnswerResponse(
answer="Error: No user message found in messages array.",
sources=[],
response_time=0.0
)
query = user_messages[-1].get("content")
if not query or not query.strip():
return AnswerResponse(
answer="Error: Empty message content provided.",
sources=[],
response_time=0.0
)
temperature = body.get("temperature", 0.2)
max_tokens = body.get("max_tokens", 1000)
else:
# No question or messages field - return error in expected format
return AnswerResponse(
answer="Error: Invalid request format. Expected 'question' or 'messages' field in request body.",
sources=[],
response_time=0.0
)
# Retrieve relevant documents (top-3 is optimal per benchmarks)
documents = retrieve_documents(query, top_k=3)
# Generate answer
answer, response_time = generate_answer(
query=query,
documents=documents,
temperature=temperature,
max_tokens=max_tokens
)
# Format sources for response (validator expects pdf_name, page_number, content)
sources = [
{
"pdf_name": doc['pdf_name'],
"page_number": doc['page_number'], # Already converted to int
"content": doc['content'] # The actual document text
}
for doc in documents
]
# Always return AnswerResponse format (validator expects 'answer' and 'sources' keys)
return AnswerResponse(
answer=answer,
sources=sources,
response_time=round(response_time, 2)
)
except Exception as e:
# Always return expected format, even for errors
return AnswerResponse(
answer=f"Error: {str(e)}",
sources=[],
response_time=0.0
)
# ============================================================================
# OCR ENDPOINT
# ============================================================================
class OCRPageResponse(BaseModel):
page_number: int
MD_text: str
def process_pdf_page(pdf_bytes: bytes, page_num: int, dpi: int = 100) -> tuple[str, int]:
"""
Process a single PDF page for OCR (memory efficient).
Returns: (base64_image, num_embedded_images)
"""
doc = fitz.open(stream=pdf_bytes, filetype="pdf")
page = doc[page_num - 1] # 0-indexed
# Convert page to image
zoom = dpi / 72
mat = fitz.Matrix(zoom, zoom)
pix = page.get_pixmap(matrix=mat)
# Convert to PIL Image
img = Image.frombytes("RGB", [pix.width, pix.height], pix.samples)
# Count embedded images
image_list = page.get_images()
num_images = len(image_list)
doc.close()
del pix, page, doc # Explicit cleanup
# Convert to base64 JPEG with good quality
buffered = BytesIO()
img.save(buffered, format="JPEG", quality=85, optimize=True)
img_base64 = base64.b64encode(buffered.getvalue()).decode("utf-8")
del img, buffered # Explicit cleanup
gc.collect() # Force garbage collection
return img_base64, num_images
@app.post("/ocr", response_model=List[OCRPageResponse])
async def ocr_endpoint(file: UploadFile = File(...)):
"""
OCR endpoint for PDF text extraction with image detection.
**Memory-optimized**:
- Processes ONE page at a time (not all pages in memory)
- 100 DPI for best OCR accuracy
- JPEG quality 85%
- Immediate garbage collection after each page
Uses VLM (Llama-4-Maverick-17B) for best accuracy:
- Character Success Rate: 87.75%
- Processing: ~6s per page
Returns:
List of {page_number, MD_text} with inline image references
"""
try:
# Read PDF
pdf_bytes = await file.read()
pdf_filename = file.filename or "document.pdf"
# Get page count
doc = fitz.open(stream=pdf_bytes, filetype="pdf")
total_pages = len(doc)
doc.close()
# Optional page limit (configurable via env var, default: no limit)
max_pages = int(os.getenv("OCR_MAX_PAGES", "0")) # 0 = unlimited
if max_pages > 0 and total_pages > max_pages:
raise HTTPException(
status_code=400,
detail=f"PDF has {total_pages} pages. Current limit is {max_pages} pages. Please split your PDF or increase OCR_MAX_PAGES environment variable."
)
# OCR system prompt
system_prompt = """You are an expert OCR system for historical oil & gas documents.
Extract ALL text from the image with 100% accuracy. Follow these rules:
1. Preserve EXACT spelling - including Azerbaijani, Russian, and English text
2. Maintain original Cyrillic characters - DO NOT transliterate
3. Keep all numbers, symbols, and special characters exactly as shown
4. Preserve layout structure (paragraphs, line breaks)
5. Include ALL text - headers, body, footnotes, tables, captions
Output ONLY the extracted text. No explanations, no descriptions."""
# Process each page ONE AT A TIME (memory efficient)
results = []
client = get_azure_client()
for page_num in range(1, total_pages + 1):
# Process single page (returns base64 image and releases memory immediately)
image_base64, num_images = process_pdf_page(pdf_bytes, page_num, dpi=100)
# VLM OCR
messages = [
{"role": "system", "content": system_prompt},
{
"role": "user",
"content": [
{"type": "text", "text": f"Extract all text from page {page_num}:"},
{"type": "image_url", "image_url": {"url": f"data:image/jpeg;base64,{image_base64}"}}
]
}
]
response = client.chat.completions.create(
model="Llama-4-Maverick-17B-128E-Instruct-FP8",
messages=messages,
temperature=0.0, # Deterministic OCR
max_tokens=4000
)
page_text = response.choices[0].message.content
# Add image references if images exist on this page
if num_images > 0:
for img_idx in range(1, num_images + 1):
page_text += f"\n\n\n\n"
results.append({
"page_number": page_num,
"MD_text": page_text
})
# Force cleanup after each page
del image_base64, messages, response
gc.collect()
return results
except HTTPException:
raise
except Exception as e:
raise HTTPException(status_code=500, detail=f"OCR Error: {str(e)}")
if __name__ == "__main__":
import uvicorn
uvicorn.run(app, host="0.0.0.0", port=8000)
|