Spaces:
Sleeping
Sleeping
File size: 4,725 Bytes
36079e7 | 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 | """
FastAPI backend for Model Inspector.
Provides endpoints to inspect model architectures from HuggingFace.
"""
import json
import os
from pathlib import Path
from typing import Optional, Dict, Any
from fastapi import FastAPI, HTTPException, UploadFile, File
from fastapi.middleware.cors import CORSMiddleware
from fastapi.staticfiles import StaticFiles
from fastapi.responses import FileResponse, HTMLResponse
from pydantic import BaseModel
from architecture_parser import parse_model, parse_config, format_params
# Get paths
BACKEND_DIR = Path(__file__).parent
FRONTEND_DIR = BACKEND_DIR.parent / "frontend"
app = FastAPI(
title="Model Inspector API",
description="Inspect transformer model architectures without downloading weights",
version="1.0.0"
)
# CORS for local development
app.add_middleware(
CORSMiddleware,
allow_origins=["*"],
allow_credentials=True,
allow_methods=["*"],
allow_headers=["*"],
)
class InspectRequest(BaseModel):
model_config = {"protected_namespaces": ()}
model_id: Optional[str] = None
config: Optional[Dict[str, Any]] = None
class ModelMetadata(BaseModel):
model_config = {"protected_namespaces": ()}
model_id: Optional[str]
model_type: str
total_params: int
formatted_params: str
class InspectResponse(BaseModel):
pipeline: Dict[str, Any]
metadata: ModelMetadata
@app.post("/api/inspect", response_model=InspectResponse)
async def inspect_model(request: InspectRequest):
"""
Inspect a model architecture.
Provide either:
- model_id: HuggingFace model ID (e.g., "meta-llama/Llama-2-7b-hf")
- config: Direct config.json object
"""
if request.model_id is None and request.config is None:
raise HTTPException(
status_code=400,
detail="Must provide either model_id or config"
)
try:
if request.model_id is not None:
# Parse from HuggingFace model ID
pipeline = parse_model(request.model_id)
model_id = request.model_id
else:
# Parse from config dict
pipeline = parse_config(request.config)
model_id = None
metadata = ModelMetadata(
model_id=model_id,
model_type=pipeline.get("model_type", "unknown"),
total_params=pipeline.get("params", 0),
formatted_params=pipeline.get("formatted_params", "0"),
)
return InspectResponse(pipeline=pipeline, metadata=metadata)
except Exception as e:
raise HTTPException(
status_code=500,
detail=f"Error inspecting model: {str(e)}"
)
@app.post("/api/upload", response_model=InspectResponse)
async def upload_config(file: UploadFile = File(...)):
"""
Upload a config.json file for inspection.
"""
if not file.filename.endswith('.json'):
raise HTTPException(
status_code=400,
detail="File must be a JSON file"
)
try:
content = await file.read()
config_dict = json.loads(content)
except json.JSONDecodeError:
raise HTTPException(
status_code=400,
detail="Invalid JSON file"
)
try:
pipeline = parse_config(config_dict)
metadata = ModelMetadata(
model_id=None,
model_type=pipeline.get("model_type", "unknown"),
total_params=pipeline.get("params", 0),
formatted_params=pipeline.get("formatted_params", "0"),
)
return InspectResponse(pipeline=pipeline, metadata=metadata)
except Exception as e:
raise HTTPException(
status_code=500,
detail=f"Error parsing config: {str(e)}"
)
@app.get("/api/health")
async def health_check():
"""Health check endpoint."""
return {"status": "healthy"}
# Serve frontend static files
@app.get("/")
async def serve_index():
"""Serve the main index.html."""
return FileResponse(FRONTEND_DIR / "index.html")
@app.get("/css/{path:path}")
async def serve_css(path: str):
"""Serve CSS files."""
file_path = FRONTEND_DIR / "css" / path
if file_path.exists():
return FileResponse(file_path, media_type="text/css")
raise HTTPException(status_code=404, detail="File not found")
@app.get("/js/{path:path}")
async def serve_js(path: str):
"""Serve JavaScript files."""
file_path = FRONTEND_DIR / "js" / path
if file_path.exists():
return FileResponse(file_path, media_type="application/javascript")
raise HTTPException(status_code=404, detail="File not found")
if __name__ == "__main__":
import uvicorn
uvicorn.run(app, host="0.0.0.0", port=7860)
|