Backend: - requirements.txt: add simple-lama-inpainting, rembg[gpu]; upgrade opencv to 4.10+ - app/config.py: add InvokeAI (url, model) and ComfyUI (url, model) settings; OPENAI_MODEL - app/services/local_inpaint.py: LaMa, OpenCV, rembg wrappers (auto GPU/CPU) - app/services/remote_provider.py: abstract RemoteAIProvider + OpenAI, InvokeAI, ComfyUI drivers - app/routers/ai_tools.py: new /api/* endpoints — /erase, /inpaint/lama, /inpaint/fast, /background/remove, /inpaint/remote, /generate/txt2img, /generate/img2img, /generate/outpaint, GET /config (capability flags) - app/main.py: register ai_tools router Frontend: - services/api.js: add erase(), textToImage(), imageToImage(), remoteInpaint(), getConfig() - api/capabilities.js: lazy-fetch /api/config singleton; hasRemote() helper - tools/ai_lama_erase.js: brush-paint mask → LaMa erase → apply to layer - tools/ai_smart_inpaint.js: brush mask + dialog (Fast/Quality mode + prompt) → inpaint - core/components/provider-badge.js: shows active provider + health in toolbar - config.js: register ai_lama_erase and ai_smart_inpaint tools - main.js: mount provider badge on load - .env.example: document InvokeAI, ComfyUI, OpenAI provider settings https://claude.ai/code/session_01B58MaJCU1R6KwBDJCp8AfN
113 lines
3.2 KiB
Python
113 lines
3.2 KiB
Python
from fastapi import FastAPI, Request
|
|
from fastapi.middleware.cors import CORSMiddleware
|
|
from fastapi.staticfiles import StaticFiles
|
|
from fastapi.responses import FileResponse, HTMLResponse
|
|
from contextlib import asynccontextmanager
|
|
from pathlib import Path
|
|
import os
|
|
|
|
from app.config import settings
|
|
from app.database import init_db
|
|
from app.routers import projects, edits, images, patches, generate, tools, ai_tools
|
|
|
|
|
|
@asynccontextmanager
|
|
async def lifespan(app: FastAPI):
|
|
"""Initialize database on startup"""
|
|
init_db()
|
|
yield
|
|
|
|
|
|
app = FastAPI(
|
|
title="AI Photo Edit API",
|
|
description="API for AI-powered photo editing with mask-scoped regeneration",
|
|
version="1.0.0",
|
|
lifespan=lifespan
|
|
)
|
|
|
|
# Configure CORS
|
|
app.add_middleware(
|
|
CORSMiddleware,
|
|
allow_origins=settings.cors_origins_list,
|
|
allow_credentials=True,
|
|
allow_methods=["*"],
|
|
allow_headers=["*"],
|
|
)
|
|
|
|
# Include routers
|
|
app.include_router(projects.router)
|
|
app.include_router(edits.router)
|
|
app.include_router(images.router)
|
|
app.include_router(patches.router)
|
|
app.include_router(generate.router)
|
|
app.include_router(tools.router)
|
|
app.include_router(ai_tools.router)
|
|
|
|
|
|
@app.get("/api")
|
|
def api_root():
|
|
"""API info endpoint"""
|
|
return {
|
|
"name": "AI Photo Edit API",
|
|
"version": "1.0.0",
|
|
"status": "running"
|
|
}
|
|
|
|
|
|
@app.get("/health")
|
|
def health():
|
|
"""Health check endpoint"""
|
|
return {"status": "healthy"}
|
|
|
|
|
|
# Static files directory
|
|
STATIC_DIR = Path("/app/static")
|
|
|
|
|
|
# Serve static assets - mount subdirectories if they exist
|
|
if STATIC_DIR.exists():
|
|
# React-style assets folder
|
|
if (STATIC_DIR / "assets").exists():
|
|
app.mount("/assets", StaticFiles(directory=STATIC_DIR / "assets"), name="assets")
|
|
# miniPaint dist folder (webpack bundle)
|
|
if (STATIC_DIR / "dist").exists():
|
|
app.mount("/dist", StaticFiles(directory=STATIC_DIR / "dist"), name="dist")
|
|
# miniPaint images folder
|
|
if (STATIC_DIR / "images").exists():
|
|
app.mount("/images", StaticFiles(directory=STATIC_DIR / "images"), name="images")
|
|
# miniPaint CSS folder
|
|
if (STATIC_DIR / "src").exists():
|
|
app.mount("/src", StaticFiles(directory=STATIC_DIR / "src"), name="src")
|
|
|
|
|
|
@app.get("/", response_class=HTMLResponse)
|
|
async def serve_spa():
|
|
"""Serve miniPaint index.html"""
|
|
index_path = STATIC_DIR / "index.html"
|
|
if index_path.exists():
|
|
return FileResponse(index_path)
|
|
return HTMLResponse("<h1>Frontend not built. Run npm build in frontend/</h1>")
|
|
|
|
|
|
@app.get("/{full_path:path}")
|
|
async def serve_spa_routes(request: Request, full_path: str):
|
|
"""
|
|
Catch-all route for serving static files.
|
|
Serves static files if they exist, otherwise returns index.html.
|
|
"""
|
|
# Don't catch API routes
|
|
if full_path.startswith(("projects", "edits", "patches", "tools", "generate", "health", "docs", "openapi.json", "api")):
|
|
return {"detail": "Not Found"}
|
|
|
|
# Check if it's a static file
|
|
static_file = STATIC_DIR / full_path
|
|
if static_file.exists() and static_file.is_file():
|
|
return FileResponse(static_file)
|
|
|
|
# Otherwise serve index.html
|
|
index_path = STATIC_DIR / "index.html"
|
|
if index_path.exists():
|
|
return FileResponse(index_path)
|
|
|
|
return HTMLResponse("<h1>Frontend not built</h1>", status_code=404)
|