update project files

This commit is contained in:
2026-06-06 00:48:05 +08:00
parent 5d4de50c8b
commit 5887c4287d
8 changed files with 22 additions and 22 deletions
+2 -2
View File
@@ -252,13 +252,13 @@ async def _do_summarize_one(db: Session, paper: Paper) -> dict:
status.raw_output_saved = True
db.commit()
# Phase 5: LaTeX 图片提取(可选增强,失败不影响总结)
# LaTeX 图片提取(可选增强,失败不影响总结)
try:
await extract_images_from_source(arxiv_id)
except Exception:
logger.warning("Failed to extract images for %s", arxiv_id, exc_info=True)
# Phase 5: 同步写入语义索引(失败仅 log
# 同步写入语义索引(失败仅 log
try:
from app.services.embedder import index_paper