File size: 17,373 Bytes
c89a139 387721d c89a139 387721d c89a139 387721d c89a139 387721d c89a139 387721d c89a139 |
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 |
from fastapi import FastAPI, HTTPException, Request
from fastapi.responses import HTMLResponse, FileResponse, JSONResponse
from fastapi.staticfiles import StaticFiles
from fastapi.middleware.cors import CORSMiddleware
import os
import logging
import json
from datetime import datetime
from update_data import update_dataset
from product_manager import DataProductManager
# Logging Configuration
logging.basicConfig(
level=logging.INFO,
format='%(asctime)s - %(name)s - %(levelname)s - %(message)s'
)
logger = logging.getLogger(__name__)
print("--- STARTING HHEURISTICS BACKEND v2.1 (Status Enabled) ---")
app = FastAPI()
# Configure CORS
app.add_middleware(
CORSMiddleware,
allow_origins=["*"], # Allow all origins for Cloudflare
allow_credentials=True,
allow_methods=["*"],
allow_headers=["*"],
)
# Initialize Managers
data_manager = DataProductManager()
# Global ML State
import threading
import time
ml_status = {
"ready": False,
"step": "Booting v2.1 Kernel",
"logs": [
f"[{datetime.now().strftime('%H:%M:%S')}] System power-on self-test initiated...",
f"[{datetime.now().strftime('%H:%M:%S')}] HHeuristics Engine v2.1-stable detected.",
f"[{datetime.now().strftime('%H:%M:%S')}] Verifying hardware acceleration (CUDA/MPS)...",
f"[{datetime.now().strftime('%H:%M:%S')}] Mounting data volumes...",
f"[{datetime.now().strftime('%H:%M:%S')}] Kernel loaded. Starting background services..."
],
"progress": 5
}
predictors = {}
pnl_tracker = None
def initialize_ml_engine():
global predictors, pnl_tracker, ml_status
try:
ml_status["step"] = "Importing ML Libraries"
ml_status["logs"].append("Loading NumPy, Pandas, and Scikit-Learn...")
ml_status["progress"] = 10
# Lazy import to prevent startup timeout
from ml_engine.pnl_tracker import PnLTracker
from ml_engine.predictors import (
FintechPredictor, AiTalentPredictor, EsgPredictor,
RegulatoryPredictor, SupplyChainPredictor
)
ml_status["progress"] = 30
ml_status["logs"].append("ML Core Libraries loaded successfully.")
ml_status["step"] = "Initializing PnL Tracker"
pnl_tracker = PnLTracker()
ml_status["progress"] = 40
# Initialize Predictors one by one
verticals = [
("fintech", FintechPredictor),
("ai_talent", AiTalentPredictor),
("esg", EsgPredictor),
("regulatory", RegulatoryPredictor),
("supply_chain", SupplyChainPredictor)
]
total_verts = len(verticals)
for i, (slug, cls) in enumerate(verticals):
ml_status["step"] = f"Training {slug.replace('_', ' ').title()} Model"
ml_status["logs"].append(f"Initializing {slug} predictor...")
# Simulate "heavy" loading/training time for UX visibility
# In production, this would be actual model loading time
time.sleep(1.5)
predictors[slug] = cls(slug, pnl_tracker)
ml_status["logs"].append(f"✓ {slug} model ready.")
ml_status["progress"] = 40 + int(((i + 1) / total_verts) * 50)
ml_status["step"] = "Finalizing"
ml_status["logs"].append("All ML models active. Engine online.")
ml_status["progress"] = 100
ml_status["ready"] = True
except Exception as e:
ml_status["step"] = "Error"
ml_status["logs"].append(f"CRITICAL ERROR: {str(e)}")
logger.error(f"ML Init Failed: {e}")
# Mount Static Files (React Build)
# We will mount 'assets' to /assets, and serve index.html for root
if os.path.exists("frontend/dist/assets"):
app.mount("/assets", StaticFiles(directory="frontend/dist/assets"), name="assets")
@app.on_event("startup")
async def startup_event():
"""Run data pipeline and ML init on startup"""
logger.info("Triggering startup data pipeline...")
# Start ML Init in Background
thread = threading.Thread(target=initialize_ml_engine)
thread.daemon = True
thread.start()
try:
# Run the Premium Data Engine
added_bytes = update_dataset()
logger.info(f"Startup pipeline completed. Added {added_bytes} bytes.")
except Exception as e:
logger.error(f"Startup pipeline failed: {e}")
@app.get("/api/catalog")
async def get_catalog():
"""API Endpoint for React Frontend"""
try:
# 1. Get System Status
data_dir = os.getenv("DATA_DIR", "data")
status_path = os.path.join(data_dir, "status.json")
if os.path.exists(status_path):
with open(status_path, 'r') as f:
system_status = json.load(f)
# Format data added
added = system_status.get('total_added_bytes', 0)
if added > 1024 * 1024:
system_status['data_added'] = f"{added / (1024*1024):.2f} MB"
else:
system_status['data_added'] = f"{added / 1024:.2f} KB"
else:
system_status = {"last_update": "Never", "data_added": "0 KB"}
# 2. Generate Product Catalog
verticals = {
"Fintech Growth Intelligence": [],
"AI Talent & Capital Prediction": [],
"ESG Impact & Greenwashing Detector": [],
"Regulatory Compliance Prediction": [],
"Supply Chain Resilience Intelligence": []
}
# Map filenames to verticals
product_map = {
"fintech": "Fintech Growth Intelligence",
"ai_talent": "AI Talent & Capital Prediction",
"esg": "ESG Impact & Greenwashing Detector",
"regulatory": "Regulatory Compliance Prediction",
"supply_chain": "Supply Chain Resilience Intelligence"
}
# Scan for files
for key, v_name in product_map.items():
# Find bundle/yearly files
# Note: We disabled monthly, so we look for what exists
# We use the smart_split_csv logic to find generated files
# Actually, simpler to just scan the directories
# Check bundles
for f in os.listdir(data_manager.dirs['bundles']):
if f.startswith(key):
path = os.path.join(data_manager.dirs['bundles'], f)
verticals[v_name].append({
'description': 'Complete Historical Bundle',
'type': 'BUNDLE',
'size_mb': f"{os.path.getsize(path)/(1024*1024):.2f}",
'rows': 'All Time', # simplified
'download_url': f"/download/{f}"
})
# Check yearly
for f in os.listdir(data_manager.dirs['yearly']):
if f.startswith(key):
path = os.path.join(data_manager.dirs['yearly'], f)
verticals[v_name].append({
'description': f"{f.split('_')[-1].replace('.csv','')} Full Year",
'type': 'YEARLY',
'size_mb': f"{os.path.getsize(path)/(1024*1024):.2f}",
'rows': '365 Days',
'download_url': f"/download/{f}"
})
# Check quarterly
for f in os.listdir(data_manager.dirs['quarterly']):
if f.startswith(key):
path = os.path.join(data_manager.dirs['quarterly'], f)
verticals[v_name].append({
'description': f"{f.split('_')[-2]} {f.split('_')[-1].replace('.csv','')}",
'type': 'QUARTERLY',
'size_mb': f"{os.path.getsize(path)/(1024*1024):.2f}",
'rows': '90 Days',
'download_url': f"/download/{f}"
})
return JSONResponse({
"system_status": system_status,
"verticals": verticals
})
except Exception as e:
logger.error(f"Error rendering marketplace: {e}")
logger.error(traceback.format_exc())
raise e
from json_utils import convert_numpy_types, log_object_types
# ... (imports remain the same)
@app.get("/api/preview/{vertical}")
async def get_preview(vertical: str):
"""Get preview data for a specific vertical"""
try:
data_dir = os.getenv("DATA_DIR", "data")
# Map vertical slug to filename
files = {
"fintech": "fintech_growth_digest.csv",
"ai_talent": "ai_talent_heatmap.csv",
"esg": "esg_sentiment_tracker.csv",
"regulatory": "regulatory_risk_index.csv",
"supply_chain": "supply_chain_risk.csv"
}
if vertical not in files:
raise HTTPException(404, "Vertical not found")
fpath = os.path.join(data_dir, files[vertical])
if not os.path.exists(fpath):
# Fallback to local data dir if env var path is empty (e.g. local dev)
fpath = os.path.join("data", files[vertical])
if not os.path.exists(fpath):
return JSONResponse({"error": "Data not generated yet"}, status_code=404)
# Read CSV with pandas
import pandas as pd
df = pd.read_csv(fpath)
# Get last 30 days for charts
history = df.tail(30).to_dict(orient='records')
# Get latest row for "Live Signals"
latest = df.iloc[-1].to_dict()
response_data = {
"vertical": vertical,
"latest": latest,
"history": history,
"total_rows": len(df)
}
# Ensure all types are JSON serializable
response_data = convert_numpy_types(response_data)
return JSONResponse(response_data)
except Exception as e:
logger.error(f"Error fetching preview: {e}")
return JSONResponse({"error": str(e)}, status_code=500)
@app.get("/api/files/{vertical}")
async def get_vertical_files(vertical: str):
"""Get list of downloadable files for a vertical"""
try:
data_dir = os.getenv("DATA_DIR", "data")
# Map vertical to base filename
base_map = {
"fintech": "fintech_growth_digest",
"ai_talent": "ai_talent_heatmap",
"esg": "esg_sentiment_tracker",
"regulatory": "regulatory_risk_index",
"supply_chain": "supply_chain_risk"
}
if vertical not in base_map:
raise HTTPException(404, "Vertical not found")
base_name = base_map[vertical]
files_list = []
# Check for Yearly and Quarterly files
# Pattern: {base_name}_2025_yearly.csv, {base_name}_2025_q1.csv, etc.
# 1. Yearly
yearly_name = f"{base_name}_2025_yearly.csv"
y_path = os.path.join(data_dir, yearly_name)
if os.path.exists(y_path):
size_bytes = os.path.getsize(y_path)
size_str = f"{size_bytes / (1024*1024):.2f} MB" if size_bytes > 1024*1024 else f"{size_bytes / 1024:.2f} KB"
files_list.append({
"name": "2025 Full Year",
"filename": yearly_name,
"size": size_str,
"type": "YEARLY"
})
# 2. Quarterly
for q in [1, 2, 3, 4]:
q_name = f"{base_name}_2025_q{q}.csv"
q_path = os.path.join(data_dir, q_name)
if os.path.exists(q_path):
size_bytes = os.path.getsize(q_path)
size_str = f"{size_bytes / (1024*1024):.2f} MB" if size_bytes > 1024*1024 else f"{size_bytes / 1024:.2f} KB"
files_list.append({
"name": f"2025 Q{q}",
"filename": q_name,
"size": size_str,
"type": "QUARTERLY"
})
return JSONResponse({"files": files_list})
except Exception as e:
logger.error(f"Error listing files: {e}")
return JSONResponse({"error": str(e)}, status_code=500)
@app.get("/api/download/{filename}")
async def download_dataset(filename: str):
"""Download a specific CSV file"""
try:
data_dir = os.getenv("DATA_DIR", "data")
fpath = os.path.join(data_dir, filename)
# Security check: ensure no directory traversal
if ".." in filename or "/" in filename:
raise HTTPException(400, "Invalid filename")
if not os.path.exists(fpath):
# Fallback for local dev
fpath = os.path.join("data", filename)
if not os.path.exists(fpath):
raise HTTPException(404, "File not found")
return FileResponse(
path=fpath,
filename=filename,
media_type='text/csv',
headers={"Content-Disposition": f"attachment; filename={filename}"}
)
except Exception as e:
logger.error(f"Error downloading file: {e}")
raise HTTPException(500, str(e))
@app.get("/api/version")
async def get_version():
"""Get backend version"""
return JSONResponse({"version": "v2.1", "status": "online"})
@app.get("/api/status")
async def get_ml_status():
"""Get initialization status of ML engine"""
return JSONResponse(ml_status)
@app.get("/api/predict/{vertical}")
async def get_prediction(vertical: str):
"""Get live ML prediction for a vertical"""
if not ml_status["ready"]:
return JSONResponse(
{"error": "ML Engine Loading", "detail": ml_status["step"]},
status_code=503
)
try:
if vertical not in predictors:
raise HTTPException(404, "Predictor not found")
# Get latest data for this vertical to run inference on
# We reuse the logic from get_preview to fetch the latest row
data_dir = os.getenv("DATA_DIR", "data")
files = {
"fintech": "fintech_growth_digest.csv",
"ai_talent": "ai_talent_heatmap.csv",
"esg": "esg_sentiment_tracker.csv",
"regulatory": "regulatory_risk_index.csv",
"supply_chain": "supply_chain_risk.csv"
}
fpath = os.path.join(data_dir, files[vertical])
if not os.path.exists(fpath):
# Fallback
fpath = os.path.join("data", files[vertical])
import pandas as pd
df = pd.read_csv(fpath)
latest_data = df.iloc[-1].to_dict()
# Run Prediction
predictor = predictors[vertical]
result = predictor.predict(latest_data)
# Convert NumPy types to Python types
result = convert_numpy_types(result)
return JSONResponse(result)
except Exception as e:
logger.error(f"Prediction failed: {e}")
# Detailed logging for debugging
logger.error("Dumping object types for debugging:")
try:
# We assume 'result' might be defined if the error happened during serialization
# If it happened before, this might fail, so we wrap it
if 'result' in locals():
log_object_types(result)
else:
logger.error("Result object was not created.")
except Exception as log_err:
logger.error(f"Failed to log object types: {log_err}")
return JSONResponse({"error": str(e)}, status_code=500)
@app.get("/api/pnl")
async def get_pnl_metrics():
"""Get global P&L tracking metrics"""
if not ml_status["ready"] or pnl_tracker is None:
return JSONResponse(
{"error": "ML Engine Loading", "detail": ml_status["step"]},
status_code=503
)
try:
metrics = pnl_tracker.get_performance_metrics()
return JSONResponse(metrics)
except Exception as e:
logger.error(f"PnL fetch failed: {e}")
return JSONResponse({"error": str(e)}, status_code=500)
@app.get("/")
async def read_root():
"""Serve React App"""
# If running locally with start_full_stack.sh, redirect to Vite
if os.getenv("LOCAL_DEV") == "true":
return HTMLResponse(
"<h1>Redirecting to Local Frontend...</h1><script>window.location.href='http://localhost:5173'</script>"
)
if os.path.exists("frontend/dist/index.html"):
return FileResponse("frontend/dist/index.html")
return HTMLResponse("<h1>Building Frontend... Please wait a moment and refresh.</h1>")
@app.get("/download/{filename}")
async def download_file(filename: str):
# Search in all dirs
data_dir = os.getenv("DATA_DIR", "data")
for dtype in ['bundles', 'yearly', 'quarterly', 'monthly']:
path = os.path.join(data_dir, dtype, filename)
if os.path.exists(path):
return FileResponse(path, media_type='text/csv', filename=filename)
raise HTTPException(404, "File not found")
if __name__ == "__main__":
port = int(os.environ.get("PORT", 7860))
uvicorn.run(app, host="0.0.0.0", port=port)
|