File size: 12,482 Bytes
255cbd1 | 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 | import os
import tempfile
import time
import json
from pathlib import Path
from datetime import datetime
from typing import Dict, Any
from fastapi import FastAPI, UploadFile, File, HTTPException
from fastapi.middleware.cors import CORSMiddleware
from fastapi.responses import JSONResponse
from dotenv import load_dotenv
# βββ Environment Loading βββββββββββββββββββββββββββββββββββββββββββ
# IMPORTANT: override=False ensures that if HF Spaces already injected
# the secrets as real env vars, load_dotenv will NOT clobber them.
load_dotenv(".env", override=False)
# Hugging Face Docker Spaces may also mount secrets as files under /run/secrets/.
# Read those and inject them β these always take highest priority.
secrets_dir = Path("/run/secrets")
if secrets_dir.exists():
for secret_file in secrets_dir.iterdir():
if secret_file.is_file():
try:
val = secret_file.read_text().strip()
if val: # only override if the file is non-empty
key = secret_file.name.upper()
os.environ[key] = val
print(f"[secrets] Loaded {key} from /run/secrets/ ({len(val)} chars)")
except Exception as e:
print(f"[secrets] Could not load {secret_file.name}: {e}")
# Final sanity log so we can see in container logs what happened
_groq = os.environ.get("GROQ_API_KEY", "")
print(f"[env] GROQ_API_KEY present={bool(_groq)}, length={len(_groq)}")
# Agents
from backend.agents.file_discovery import FileDiscoveryAgent, FileDiscoveryInput
from backend.agents.document_parsing import DocumentParsingAgent, DocumentParsingInput
from backend.agents.table_extraction import TableExtractionAgent, TableExtractionInput
from backend.agents.media_extraction import MediaExtractionAgent, MediaExtractionInput
from backend.agents.indexing import IndexingAgent, IndexingInput
from backend.agents.schema_mapping_v2 import SchemaMappingAgent
from backend.models.schemas import SchemaMappingInput
from backend.agents.validation_agent import ValidationAgent
from backend.models.schemas import ValidationInput as ValidationInputSchema
from backend.utils.storage_manager import StorageManager
app = FastAPI(title="Digi-Biz API")
# Allow CORS for Next.js
origins = [
"http://localhost:3000",
]
if os.getenv("FRONTEND_URL"):
origins.append(os.getenv("FRONTEND_URL"))
app.add_middleware(
CORSMiddleware,
allow_origins=origins,
allow_origin_regex=r"https://.*\.vercel\.app",
allow_credentials=True,
allow_methods=["*"],
allow_headers=["*"],
)
# Storage paths
PROFILES_DIR = Path("./storage/profiles")
PROFILES_DIR.mkdir(parents=True, exist_ok=True)
# In-memory job status
jobs: Dict[str, Dict[str, Any]] = {}
def generate_job_id() -> str:
return f"job_{datetime.now().strftime('%Y%m%d_%H%M%S')}"
@app.post("/api/upload")
async def upload_zip(file: UploadFile = File(...)):
"""Upload ZIP and start processing"""
if not file.filename.endswith('.zip'):
raise HTTPException(status_code=400, detail="Must be a ZIP file")
job_id = generate_job_id()
temp_dir = Path(tempfile.gettempdir()) / "digi_biz" / job_id
temp_dir.mkdir(parents=True, exist_ok=True)
zip_path = temp_dir / file.filename
with open(zip_path, "wb") as f:
content = await file.read()
f.write(content)
# Initialize job status
jobs[job_id] = {
"job_id": job_id,
"status": "processing",
"progress": 0.0,
"current_phase": "upload",
"created_at": datetime.now().isoformat(),
"profile_path": None
}
# Start background processing
import asyncio
asyncio.create_task(process_job(job_id, str(zip_path)))
return {"job_id": job_id, "status": "processing"}
# βββ Sample Data for Hackathon Evaluators ββββββββββββββββββββββββββ
SAMPLES_DIR = Path("./test_data")
@app.get("/api/samples")
async def list_samples():
"""List available sample ZIP files for quick demo"""
samples = []
if SAMPLES_DIR.exists():
for f in sorted(SAMPLES_DIR.glob("*.zip")):
samples.append({
"name": f.stem,
"filename": f.name,
"size_mb": round(f.stat().st_size / (1024 * 1024), 1)
})
return {"samples": samples}
@app.post("/api/samples/{filename}/run")
async def run_sample(filename: str):
"""Start processing a sample ZIP file directly"""
zip_path = SAMPLES_DIR / filename
if not zip_path.exists() or not filename.endswith('.zip'):
raise HTTPException(404, f"Sample '{filename}' not found")
job_id = generate_job_id()
jobs[job_id] = {
"job_id": job_id,
"status": "processing",
"progress": 0.0,
"current_phase": "upload",
"created_at": datetime.now().isoformat(),
"profile_path": None
}
import asyncio
asyncio.create_task(process_job(job_id, str(zip_path)))
return {"job_id": job_id, "status": "processing"}
@app.get("/api/status/{job_id}")
async def get_status(job_id: str):
"""Get processing status"""
job = jobs.get(job_id)
if not job:
raise HTTPException(404, "Job not found")
return job
@app.get("/api/debug")
async def get_debug():
"""Temporary debug route to inspect environment keys from Hugging Face"""
import os
env_keys = list(os.environ.keys())
return {
"env_keys": env_keys,
"groq_present": "GROQ_API_KEY" in os.environ,
"is_empty": os.environ.get("GROQ_API_KEY") == "",
"length": len(os.environ.get("GROQ_API_KEY", "")),
"val_start": os.environ.get("GROQ_API_KEY", "")[:4]
}
@app.get("/api/profiles")
async def list_profiles():
"""List all profiles"""
profiles = []
for profile_file in PROFILES_DIR.glob("*.json"):
if profile_file.name.startswith("profile_"):
with open(profile_file) as f:
profile = json.load(f)
profiles.append({
"job_id": profile.get("job_id"),
"name": profile.get("business_info", {}).get("name", "Unknown"),
"created_at": profile.get("created_at"),
"service_count": len(profile.get("services", [])),
"business_type": profile.get("business_type", "unknown")
})
return {"profiles": sorted(profiles, key=lambda x: x.get('created_at', ''), reverse=True)}
@app.get("/api/profile/{job_id}")
async def get_profile(job_id: str):
"""Get complete profile"""
profile_path = PROFILES_DIR / f"profile_{job_id}.json"
if not profile_path.exists():
raise HTTPException(404, "Profile not found")
with open(profile_path) as f:
profile = json.load(f)
return profile
@app.put("/api/profile/{job_id}")
async def update_profile(job_id: str, profile: dict):
"""Update profile (edit)"""
profile_path = PROFILES_DIR / f"profile_{job_id}.json"
if not profile_path.exists():
raise HTTPException(404, "Profile not found")
profile["updated_at"] = datetime.now().isoformat()
with open(profile_path, "w") as f:
json.dump(profile, f, indent=2)
return {"success": True, "message": "Profile updated"}
@app.delete("/api/profile/{job_id}")
async def delete_profile(job_id: str):
"""Delete profile"""
profile_path = PROFILES_DIR / f"profile_{job_id}.json"
if not profile_path.exists():
raise HTTPException(404, "Profile not found")
profile_path.unlink()
return {"success": True, "message": "Profile deleted"}
@app.post("/api/profile/{job_id}/export")
async def export_profile(job_id: str):
"""Export profile as JSON"""
profile_path = PROFILES_DIR / f"profile_{job_id}.json"
if not profile_path.exists():
raise HTTPException(404, "Profile not found")
with open(profile_path) as f:
profile = json.load(f)
return JSONResponse(
content=profile,
headers={"Content-Disposition": f"attachment; filename=profile_{job_id}.json"}
)
async def process_job(job_id: str, file_path: str):
"""Process job in background with progress updates"""
try:
# Update status
jobs[job_id]["current_phase"] = "file_discovery"
jobs[job_id]["progress"] = 10.0
# Step 1: File Discovery
storage_manager = StorageManager(storage_base=str(PROFILES_DIR))
discovery_agent = FileDiscoveryAgent(storage_manager=storage_manager)
discovery_output = discovery_agent.discover(
FileDiscoveryInput(zip_file_path=file_path, job_id=job_id)
)
if not discovery_output.success:
raise Exception(f"File discovery failed: {discovery_output.errors}")
# Step 2: Document Parsing (30%)
jobs[job_id]["current_phase"] = "document_parsing"
jobs[job_id]["progress"] = 30.0
parsing_agent = DocumentParsingAgent(enable_ocr=False)
parsing_output = parsing_agent.parse(
DocumentParsingInput(documents=discovery_output.documents, job_id=job_id)
)
# Step 3: Table Extraction (50%)
jobs[job_id]["current_phase"] = "table_extraction"
jobs[job_id]["progress"] = 50.0
table_agent = TableExtractionAgent()
tables_output = table_agent.extract(
TableExtractionInput(parsed_documents=parsing_output.parsed_documents, job_id=job_id)
)
# Step 4: Media Extraction (70%)
jobs[job_id]["current_phase"] = "media_extraction"
jobs[job_id]["progress"] = 70.0
media_agent = MediaExtractionAgent(enable_deduplication=False)
media_output = media_agent.extract_all(
MediaExtractionInput(
parsed_documents=parsing_output.parsed_documents,
standalone_files=[img.file_path for img in discovery_output.images],
job_id=job_id
)
)
# Step 5: Indexing (85%)
jobs[job_id]["current_phase"] = "indexing"
jobs[job_id]["progress"] = 85.0
indexing_agent = IndexingAgent()
page_index = indexing_agent.build_index(
IndexingInput(
parsed_documents=parsing_output.parsed_documents,
tables=tables_output.tables,
images=media_output.media.images if media_output.success else [],
job_id=job_id
)
)
# Step 6: Schema Mapping (95%)
jobs[job_id]["current_phase"] = "schema_mapping"
jobs[job_id]["progress"] = 95.0
schema_agent = SchemaMappingAgent()
mapping_output = schema_agent.map_to_schema(
SchemaMappingInput(page_index=page_index, job_id=job_id)
)
if not mapping_output.success:
raise Exception(f"Schema mapping failed: {mapping_output.errors}")
# Validate
validation_agent = ValidationAgent()
validation_output = validation_agent.validate(
ValidationInputSchema(profile=mapping_output.profile, job_id=job_id)
)
# Add metadata
profile = mapping_output.profile.model_dump(mode='json')
profile["job_id"] = job_id
profile["created_at"] = datetime.now().isoformat()
profile["validation"] = {
"completeness_score": validation_output.completeness_score,
"field_scores": validation_output.field_scores
}
# Save profile
profile_path = PROFILES_DIR / f"profile_{job_id}.json"
with open(profile_path, "w") as f:
json.dump(profile, f, indent=2)
jobs[job_id]["profile_path"] = str(profile_path)
jobs[job_id]["status"] = "completed"
jobs[job_id]["progress"] = 100.0
jobs[job_id]["current_phase"] = "done"
print(f"[SUCCESS] Job {job_id} completed successfully")
except Exception as e:
jobs[job_id]["status"] = "failed"
jobs[job_id]["error"] = str(e)
print(f"[ERROR] Job {job_id} failed: {e}")
import traceback
traceback.print_exc()
if __name__ == "__main__":
import uvicorn
uvicorn.run(app, host="0.0.0.0", port=8000)
|