This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!DOCTYPE html> | |
| <html> | |
| <body> | |
| <style> | |
| body{font-family:sans-serif;background:#f5f7fb;display:flex;justify-content:center;align-items:center;height:100vh;margin:0} | |
| .box{background:white;padding:28px;width:260px;border-radius:10px;box-shadow:0 10px 25px rgba(0,0,0,.08)} | |
| h3{margin-top:0;text-align:center} | |
| input,button{width:100%;margin:8px 0;padding:10px;border-radius:6px;border:1px solid #ddd} | |
| button{background:#3b82f6;color:white;border:none;cursor:pointer} | |
| button:last-of-type{background:#10b981} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import io, os, base64 | |
| from typing import Optional | |
| import torch | |
| from fastapi import FastAPI, UploadFile, File, Form, HTTPException, Header | |
| from fastapi.middleware.cors import CORSMiddleware | |
| from fastapi.responses import StreamingResponse, JSONResponse | |
| from PIL import Image | |
| from diffusers import QwenImageEditPipeline | |
| # ✅ Default to local model path in /workspace |