Spaces:
Running
Running
File size: 24,068 Bytes
ba016aa 9f580ce ba016aa 9f580ce ba016aa 9f580ce ba016aa | 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 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 | import os
import asyncio
import json
import time
import datetime
import httpx
from typing import List, Optional
from fastapi import FastAPI, UploadFile, File, Form, Depends, Query, HTTPException, BackgroundTasks, Request
from fastapi.middleware.cors import CORSMiddleware
from fastapi.staticfiles import StaticFiles
from fastapi.responses import FileResponse
from sqlalchemy.orm import Session
from database import get_db, init_db, SessionLocal
from models import (
VectorMatchTask, VectorDataset, VectorDataRow,
VectorEmbedding, MatchResult,
)
from schemas import (
TaskCreate, TaskDetail, TaskProgress, TaskListItem,
MatchResultItem, MatchResultPage, SourceWithCandidates, CandidateDetail,
UploadResponse, SettingItem, SettingsResponse, DatasetInfo,
)
from services.excel_service import save_upload_file, get_sheet_info, parse_excel_rows
from services.match_service import run_match_task
app = FastAPI(title="VectorMatch API", version="1.0.0")
app.add_middleware(
CORSMiddleware,
allow_origins=["*"],
allow_credentials=True,
allow_methods=["*"],
allow_headers=["*"],
)
import logging, traceback
from starlette.requests import Request
from starlette.responses import JSONResponse
logger = logging.getLogger("uvicorn.error")
@app.exception_handler(Exception)
async def global_exception_handler(request: Request, exc: Exception):
logger.error(f"Unhandled error on {request.method} {request.url}:\n{traceback.format_exc()}")
return JSONResponse(status_code=500, content={"detail": str(exc)})
# โโโ ๅฅๅบท็ถๆ็ผๅญ โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
_health_cache = {
"result": {"embedding_ok": False, "reranker_ok": False, "embedding_model": "",
"reranker_model": "", "reranker_enabled": False, "has_api_key": False},
"updated_at": 0,
}
_HEALTH_TTL = 30 # ็ผๅญๆๆๆ๏ผ็ง๏ผ
async def _do_health_check():
"""ๆง่ก็ๆญฃ็ API ๆขๆดป๏ผๆดๆฐ็ผๅญ"""
import services.embedding_service as es
api_key = es.SILICONFLOW_API_KEY
result = {
"embedding_ok": False,
"reranker_ok": False,
"embedding_model": es.EMBEDDING_MODEL,
"reranker_model": es.RERANKER_MODEL,
"reranker_enabled": es.RERANKER_ENABLED,
"has_api_key": bool(api_key),
}
if api_key:
try:
async with httpx.AsyncClient(timeout=5.0, proxies={}) as client:
try:
emb_resp = await client.post(
"https://api.siliconflow.cn/v1/embeddings",
headers={"Authorization": f"Bearer {api_key}", "Content-Type": "application/json"},
json={"model": es.EMBEDDING_MODEL, "input": ["ping"]},
)
result["embedding_ok"] = emb_resp.status_code == 200
except Exception:
pass
if es.RERANKER_ENABLED:
try:
rerank_resp = await client.post(
"https://api.siliconflow.cn/v1/rerank",
headers={"Authorization": f"Bearer {api_key}", "Content-Type": "application/json"},
json={"model": es.RERANKER_MODEL, "query": "ping", "documents": ["pong"], "top_n": 1},
)
result["reranker_ok"] = rerank_resp.status_code == 200
except Exception:
pass
except Exception:
pass
_health_cache["result"] = result
_health_cache["updated_at"] = time.time()
return result
async def _health_polling_loop():
"""ๅๅฐๅฎๆถๆขๆดปๅพช็ฏ"""
while True:
try:
await _do_health_check()
except Exception:
pass
await asyncio.sleep(_HEALTH_TTL)
@app.on_event("startup")
async def startup():
init_db()
# ๅฏๅจๅๅฐๅฅๅบทๆฃๆฅๅพช็ฏ
asyncio.create_task(_health_polling_loop())
# โโโ Upload Excel โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
@app.post("/api/upload", response_model=UploadResponse)
async def upload_excel(
file: UploadFile = File(...),
dataset_role: str = Form("source"),
db: Session = Depends(get_db),
):
content = await file.read()
filepath = save_upload_file(content, file.filename)
info = get_sheet_info(filepath)
dataset = VectorDataset(
name=file.filename,
file_name=file.filename,
dataset_role=dataset_role,
data_scope="task",
)
db.add(dataset)
db.commit()
db.refresh(dataset)
return UploadResponse(
dataset_id=dataset.id,
file_name=file.filename,
sheet_names=info["sheet_names"],
columns=info["columns"],
all_columns=info.get("all_columns", info["columns"]),
)
# โโโ Configure dataset (sheet, fields) โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
@app.post("/api/dataset/{dataset_id}/configure")
def configure_dataset(
dataset_id: int,
sheet_name: str = Form(...),
vector_fields: str = Form(...),
db: Session = Depends(get_db),
):
dataset = db.query(VectorDataset).get(dataset_id)
if not dataset:
raise HTTPException(404, "Dataset not found")
dataset.sheet_name = sheet_name
dataset.vector_fields = vector_fields
db.commit()
fields = json.loads(vector_fields)
import os
filepath = os.path.join(
os.path.dirname(__file__), "data", "uploads", dataset.file_name
)
rows = parse_excel_rows(filepath, sheet_name, fields)
for row_data in rows:
dr = VectorDataRow(
dataset_id=dataset.id,
dataset_role=dataset.dataset_role,
data_scope=dataset.data_scope,
row_number=row_data["row_number"],
raw_text=row_data["raw_text"],
text_hash=row_data["text_hash"],
field_values=row_data["field_values"],
)
db.add(dr)
dataset.row_count = len(rows)
db.commit()
return {"status": "ok", "row_count": len(rows)}
# โโโ Get dataset info โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
@app.get("/api/dataset/{dataset_id}", response_model=DatasetInfo)
def get_dataset(dataset_id: int, db: Session = Depends(get_db)):
dataset = db.query(VectorDataset).get(dataset_id)
if not dataset:
raise HTTPException(404, "Dataset not found")
return dataset
# โโโ Create & start task โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
@app.post("/api/task", response_model=TaskDetail)
async def create_task(
background_tasks: BackgroundTasks,
source_dataset_id: int = Form(...),
target_dataset_id: int = Form(...),
match_mode: str = Form("two_file"),
top_k: int = Form(10),
rerank_top_k: int = Form(3),
min_threshold: float = Form(0.70),
candidate_scope: str = Form("current_task_target"),
db: Session = Depends(get_db),
):
now = datetime.datetime.now(datetime.timezone(datetime.timedelta(hours=8)))
task_code = now.strftime("%Y%m%d%H%M%S") + f"{now.microsecond // 1000:03d}"
src = db.query(VectorDataset).get(source_dataset_id)
tgt = db.query(VectorDataset).get(target_dataset_id)
if not src or not tgt:
raise HTTPException(400, "Source or target dataset not found")
task = VectorMatchTask(
task_code=task_code,
match_mode=match_mode,
candidate_scope=candidate_scope,
source_dataset_id=source_dataset_id,
target_dataset_id=target_dataset_id,
top_k=top_k,
rerank_top_k=rerank_top_k,
min_threshold=min_threshold,
status="pending",
)
db.add(task)
db.commit()
db.refresh(task)
src.task_id = task.id
tgt.task_id = task.id
db.query(VectorDataRow).filter(VectorDataRow.dataset_id == src.id).update({"task_id": task.id})
db.query(VectorDataRow).filter(VectorDataRow.dataset_id == tgt.id).update({"task_id": task.id})
db.commit()
background_tasks.add_task(_run_task_in_background, task.id)
db.refresh(task)
return task
def _run_task_in_background(task_id: int):
loop = asyncio.new_event_loop()
asyncio.set_event_loop(loop)
loop.run_until_complete(run_match_task(task_id, SessionLocal))
loop.close()
def _get_alive_task(db: Session, task_id: int) -> Optional[VectorMatchTask]:
"""ๆช่ฝฏๅ ้ค็ไปปๅก๏ผis_delete=0๏ผใ"""
task = db.query(VectorMatchTask).get(task_id)
if not task or (task.is_delete or 0) == 1:
return None
return task
# โโโ Task progress โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
@app.get("/api/task/{task_id}/progress", response_model=TaskProgress)
def get_task_progress(task_id: int, db: Session = Depends(get_db)):
task = _get_alive_task(db, task_id)
if not task:
raise HTTPException(404, "Task not found")
return task
# โโโ Task detail โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
@app.get("/api/task/{task_id}", response_model=TaskDetail)
def get_task_detail(task_id: int, db: Session = Depends(get_db)):
task = _get_alive_task(db, task_id)
if not task:
raise HTTPException(404, "Task not found")
return task
# โโโ Task list โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
@app.get("/api/tasks", response_model=List[TaskListItem])
def list_tasks(
scope: str = Query("active", description="active=ๆชๅฝๆกฃ, archived=ไป
ๅฝๆกฃ, deleted=ๅๆถ็ซ"),
db: Session = Depends(get_db),
):
if scope not in ("active", "archived", "deleted"):
raise HTTPException(400, "scope ้กปไธบ activeใarchived ๆ deleted")
q = db.query(VectorMatchTask)
if scope == "deleted":
q = q.filter(VectorMatchTask.is_delete == 1)
else:
q = q.filter(VectorMatchTask.is_delete == 0)
if scope == "archived":
q = q.filter(VectorMatchTask.is_archived == 1)
else:
q = q.filter(VectorMatchTask.is_archived == 0)
tasks = q.order_by(VectorMatchTask.created_time.desc()).all()
result = []
for t in tasks:
src_name = t.source_dataset.name if t.source_dataset else None
tgt_name = t.target_dataset.name if t.target_dataset else None
result.append(TaskListItem(
id=t.id,
task_code=t.task_code,
match_mode=t.match_mode,
candidate_scope=t.candidate_scope,
source_dataset_name=src_name,
target_dataset_name=tgt_name,
status=t.status,
is_archived=t.is_archived or 0,
is_delete=t.is_delete or 0,
created_time=t.created_time,
))
return result
@app.post("/api/task/{task_id}/archive")
def archive_task(task_id: int, db: Session = Depends(get_db)):
task = _get_alive_task(db, task_id)
if not task:
raise HTTPException(404, "Task not found")
task.is_archived = 1
db.commit()
return {"status": "ok"}
@app.post("/api/task/{task_id}/unarchive")
def unarchive_task(task_id: int, db: Session = Depends(get_db)):
task = _get_alive_task(db, task_id)
if not task:
raise HTTPException(404, "Task not found")
task.is_archived = 0
db.commit()
return {"status": "ok"}
@app.delete("/api/task/{task_id}")
def delete_task(task_id: int, db: Session = Depends(get_db)):
"""่ฝฏๅ ้ค๏ผis_delete=1๏ผๆฐๆฎไปไฟ็ๅจๅบไธญใ"""
task = _get_alive_task(db, task_id)
if not task:
raise HTTPException(404, "Task not found")
task.is_delete = 1
db.commit()
return {"status": "ok"}
@app.post("/api/task/{task_id}/restore")
def restore_task(task_id: int, db: Session = Depends(get_db)):
"""ไปๅๆถ็ซๆขๅคใ"""
task = db.query(VectorMatchTask).get(task_id)
if not task or (task.is_delete or 0) != 1:
raise HTTPException(404, "Task not found or not deleted")
task.is_delete = 0
db.commit()
return {"status": "ok"}
# โโโ Match results โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
@app.get("/api/task/{task_id}/results", response_model=MatchResultPage)
def get_task_results(
task_id: int,
page: int = Query(1, ge=1),
page_size: int = Query(20, ge=1, le=100),
search: Optional[str] = None,
level: Optional[str] = None,
sort: str = "score_desc",
db: Session = Depends(get_db),
):
if not _get_alive_task(db, task_id):
raise HTTPException(404, "Task not found")
query = (
db.query(MatchResult)
.filter(MatchResult.task_id == task_id, MatchResult.rank == 1)
)
if level and level != "all":
query = query.filter(MatchResult.match_level == level)
if sort == "score_desc":
query = query.order_by(MatchResult.similarity_score.desc())
elif sort == "score_asc":
query = query.order_by(MatchResult.similarity_score.asc())
else:
query = query.order_by(MatchResult.source_row_id)
total = query.count()
results = query.offset((page - 1) * page_size).limit(page_size).all()
items = []
for r in results:
src_row = db.query(VectorDataRow).get(r.source_row_id)
tgt_row = db.query(VectorDataRow).get(r.target_row_id)
if search:
if search.lower() not in (src_row.raw_text or "").lower() and \
search.lower() not in (tgt_row.raw_text or "").lower():
continue
items.append(MatchResultItem(
id=r.id,
source_row_id=r.source_row_id,
source_row_number=src_row.row_number if src_row else 0,
source_text=src_row.raw_text if src_row else "",
target_text=tgt_row.raw_text if tgt_row else "",
similarity_score=r.similarity_score,
rerank_score=r.rerank_score,
match_level=r.match_level or "",
candidate_scope=r.candidate_scope,
is_confirmed=r.is_confirmed,
))
return MatchResultPage(items=items, total=total, page=page, page_size=page_size)
# โโโ Candidate details for a source row โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
@app.get("/api/task/{task_id}/candidates/{source_row_id}", response_model=SourceWithCandidates)
def get_candidates(task_id: int, source_row_id: int, db: Session = Depends(get_db)):
if not _get_alive_task(db, task_id):
raise HTTPException(404, "Task not found")
src_row = db.query(VectorDataRow).get(source_row_id)
if not src_row:
raise HTTPException(404, "Source row not found")
results = (
db.query(MatchResult)
.filter(MatchResult.task_id == task_id, MatchResult.source_row_id == source_row_id)
.order_by(MatchResult.rank)
.all()
)
candidates = []
for r in results:
tgt_row = db.query(VectorDataRow).get(r.target_row_id)
candidates.append(CandidateDetail(
rank=r.rank,
rerank_rank=r.rerank_rank,
target_row_id=r.target_row_id,
target_text=tgt_row.raw_text if tgt_row else "",
similarity_score=r.similarity_score,
rerank_score=r.rerank_score,
match_level=r.match_level or "",
dataset_role="target",
candidate_scope=r.candidate_scope,
data_row_id=tgt_row.id if tgt_row else 0,
is_confirmed=r.is_confirmed,
))
return SourceWithCandidates(
source_row_id=src_row.id,
source_text=src_row.raw_text,
source_row_number=src_row.row_number,
dataset_role=src_row.dataset_role,
data_row_id=src_row.id,
candidates=candidates,
)
# โโโ Confirm match โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
@app.post("/api/result/{result_id}/confirm")
def confirm_match(result_id: int, db: Session = Depends(get_db)):
result = db.query(MatchResult).get(result_id)
if not result:
raise HTTPException(404, "Result not found")
result.is_confirmed = 1
db.commit()
return {"status": "ok"}
@app.post("/api/result/{result_id}/ignore")
def ignore_match(result_id: int, db: Session = Depends(get_db)):
result = db.query(MatchResult).get(result_id)
if not result:
raise HTTPException(404, "Result not found")
result.is_confirmed = -1
db.commit()
return {"status": "ok"}
# โโโ Settings (read/write .env) โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
_backend_dir = os.path.dirname(os.path.abspath(__file__))
_env_local = os.path.join(_backend_dir, ".env.local")
ENV_PATH = _env_local if os.path.exists(_env_local) else os.path.join(_backend_dir, ".env")
def _read_env() -> dict:
result = {}
if os.path.exists(ENV_PATH):
with open(ENV_PATH, "r", encoding="utf-8") as f:
for line in f:
line = line.strip()
if line and not line.startswith("#") and "=" in line:
k, v = line.split("=", 1)
result[k.strip()] = v.strip()
return result
def _write_env(settings: dict):
with open(ENV_PATH, "w", encoding="utf-8") as f:
for k, v in settings.items():
f.write(f"{k}={v}\n")
@app.get("/api/settings", response_model=SettingsResponse)
def get_settings():
return SettingsResponse(settings=_read_env())
@app.post("/api/settings")
async def update_settings(items: List[SettingItem]):
current = _read_env()
for item in items:
current[item.key] = item.value
_write_env(current)
# ไฟๅญๅ่ชๅจ้่ฝฝ็ฏๅขๅ้๏ผๆ ้ๆๅจ้ๅฏ
from dotenv import load_dotenv
load_dotenv(ENV_PATH, override=True)
# ๅๆญฅๆดๆฐ embedding_service ๆจกๅไธญ็้
็ฝฎๅธธ้
import services.embedding_service as es
es.SILICONFLOW_API_KEY = os.environ.get("SILICONFLOW_API_KEY", "")
es.EMBEDDING_MODEL = os.environ.get("EMBEDDING_MODEL", "BAAI/bge-m3")
es.EMBEDDING_DIM = int(os.environ.get("EMBEDDING_DIM", "1024"))
es.RERANKER_MODEL = os.environ.get("RERANKER_MODEL", "Qwen/Qwen3-VL-Reranker-8B")
es.RERANKER_ENABLED = os.environ.get("RERANKER_ENABLED", "true").lower() == "true"
# ็ซๅณๅทๆฐๅฅๅบท็ผๅญ๏ผๅ็ซฏไธๆฌก่ฏทๆฑๅณๅฏๆฟๅฐๆๆฐ็ถๆ
await _do_health_check()
return {"status": "ok", "message": "ๅทฒไฟๅญ๏ผ้
็ฝฎๅทฒๅฎๆถ็ๆ"}
# โโโ ๅฅๅบทๆฃๆฅ๏ผ่ฟๅๅ็ซฏ็ผๅญ๏ผ็ง็บงๅๅบ๏ผโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
@app.get("/api/health")
async def health_check(force: bool = False):
"""่ฟๅ็ผๅญ็ๅฅๅบท็ถๆ๏ผforce=true ๆถ็ซๅณๅทๆฐ"""
if force or time.time() - _health_cache["updated_at"] > _HEALTH_TTL:
await _do_health_check()
return _health_cache["result"]
# โโโ Export results โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
@app.get("/api/task/{task_id}/export")
def export_results(task_id: int, db: Session = Depends(get_db)):
import io
import openpyxl
from openpyxl.styles import Font, Alignment, PatternFill
from fastapi.responses import StreamingResponse
task = _get_alive_task(db, task_id)
if not task:
raise HTTPException(404, "Task not found")
results = (
db.query(MatchResult)
.filter(MatchResult.task_id == task_id)
.order_by(MatchResult.source_row_id, MatchResult.rank)
.all()
)
from openpyxl.styles import Font, PatternFill, Alignment
wb = openpyxl.Workbook()
ws = wb.active
ws.title = "ๅน้
็ปๆ"
headers = ["ๆบ่กๅท", "ๆบๆฐๆฎๅ
ๅฎน", "ๅ้ๆๅ", "็ฎๆ ๅ้ๅ
ๅฎน", "็ธไผผๅบฆ(%)", "็ฒพๆๅ", "ๅน้
็ญ็บง", "ๅ้ๆฅๆบ"]
ws.append(headers)
# Header styling
header_font = Font(bold=True, color="FFFFFF")
header_fill = PatternFill(start_color="1F4E79", end_color="1F4E79", fill_type="solid")
for cell in ws[1]:
cell.font = header_font
cell.fill = header_fill
cell.alignment = Alignment(horizontal="center", vertical="center")
level_map = {"high": "้ซๅบฆๅน้
", "possible": "ๅฏ่ฝๅน้
", "low_confidence": "ไฝ็ฝฎไฟก", "no_match": "ไธๅน้
"}
scope_map = {"current_task_target": "็ฎๆ ๅ้้", "history": "ๅๅฒๆฐๆฎ", "standard": "ๆ ๅๅบ"}
for r in results:
src = db.query(VectorDataRow).get(r.source_row_id)
tgt = db.query(VectorDataRow).get(r.target_row_id)
ws.append([
src.row_number if src else "",
src.raw_text if src else "",
r.rank,
tgt.raw_text if tgt else "",
round(r.similarity_score * 100, 2),
round(r.rerank_score, 4) if r.rerank_score is not None else "",
level_map.get(r.match_level, r.match_level),
scope_map.get(r.candidate_scope, r.candidate_scope or ""),
])
# Column widths
col_widths = [8, 40, 10, 40, 12, 12, 12, 14]
for i, w in enumerate(col_widths, 1):
ws.column_dimensions[chr(64 + i)].width = w
output = io.BytesIO()
wb.save(output)
output.seek(0)
return StreamingResponse(
output,
media_type="application/vnd.openxmlformats-officedocument.spreadsheetml.sheet",
headers={"Content-Disposition": f"attachment; filename=match_result_{task.task_code}.xlsx"},
)
# Serve frontend static files
_static_dir = os.path.join(os.path.dirname(__file__), "static")
if os.path.isdir(os.path.join(_static_dir, "assets")):
app.mount("/assets", StaticFiles(directory=os.path.join(_static_dir, "assets")), name="assets")
@app.get("/{full_path:path}")
async def serve_frontend(full_path: str):
"""Catch-all: serve index.html for SPA routing"""
file_path = os.path.join(_static_dir, full_path)
if full_path and os.path.isfile(file_path):
return FileResponse(file_path)
index = os.path.join(_static_dir, "index.html")
if os.path.isfile(index):
return FileResponse(index)
return {"detail": "Not found"}
if __name__ == "__main__":
import uvicorn
uvicorn.run("main:app", host="0.0.0.0", port=8000, reload=True)
|