Files
beige/backend/app/services/fission_image_retry.py
yangqianqian 4bed7425a8 A8多套打包+M4归档+R5多图:存量功能备份
A8 多套交付包(packaging_task.py):
- 修复交付包只打第1条混乱note的bug,按ImageCandidate.strategy分A/B/C组
- 每组生独立note_0N夹(6图+文案.txt),同seq留最新去重,老数据兼容
- task74端到端验:3套各6图,独立agent7项交叉验证全过

M4 归档(tasks.py/exports.py/前端):
- list_tasks加date_from/date_to/product_id筛选+product_name批量填(防N+1)
- 新增exports.py:产品JSON导出+标杆CSV导出(UTF-8 BOM)
- 前端HistoryFilters日期/产品筛选+产品列+打回原因红banner
- response.py加raise_param_error;独立agent验A1/A2/A9通过

R5 产品多图(product_images.py/020迁移/前端):
- product_images表+5端点(上传/列/改场景/设主图/删图)
- 生图按ROLE_SCENE_PREFERENCE选对应场景图,回落primary
- 前端ProductImageManager多图画廊

R6 账号config拆页(settings/):
- 配置页按角色拆/settings(运营+组长+admin)+/config(仅admin)
- Key只显末4位不显余额(守红线)

核销表对齐真实代码状态:D1改稿框/M7裂变/E12评图分纠偏为已完成(曾漏回写)

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
2026-06-18 17:32:49 +08:00

120 lines
5.0 KiB
Python
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
"""
app/services/fission_image_retry.py — 第11环裂变 失败分镜补图(中转站波动兜底)
实测发现 codeproxy 偶发不稳单套中某张图重试3次仍失败会记 error 落库。
本模块对某一套(FissionNote)只补 images_json 里标了 error 的分镜:成功的不动,
失败的用引擎 target_role 单张重生(R2 零改动)merge 回 images_json。
🔴 生图引擎零改动;只补失败 role避免整套重生浪费已成功的图与 token。
"""
import logging
from sqlalchemy.orm import Session
logger = logging.getLogger(__name__)
def _failed_roles(images: list[dict]) -> list[str]:
"""从 images_json 解析出标了 error 的分镜 role 列表。"""
return [img.get("role", "") for img in images if img.get("error") and img.get("role")]
def retry_fission_note_images(
db: Session, clients, ft, product: dict, image_count: int, note_id: int,
) -> dict:
"""对单套 FissionNote 只补失败分镜。返回 {seq, retried, recovered, still_failed}。"""
import asyncio
import json as _json
import os
from app.models.fission import FissionNote
from app.core.config import get_settings
from app.services.ai_engine.image_gen import generate_storyboard_images
from app.services.ai_engine.image_postprocessor import process_image
from app.workers.pipeline_io import _resolve_image_path
fn = db.query(FissionNote).filter(FissionNote.id == note_id).first()
if not fn:
return {"seq": None, "retried": 0, "recovered": 0, "still_failed": 0}
try:
images = _json.loads(fn.images_json) if fn.images_json else []
except (ValueError, TypeError):
images = []
try:
note = _json.loads(fn.note_json) if fn.note_json else {}
except (ValueError, TypeError):
note = {}
failed = _failed_roles(images)
if not failed:
return {"seq": fn.seq, "retried": 0, "recovered": 0, "still_failed": 0}
# 参考图沿用源产品同一张(与首轮生图一致)
reference_images = None
_img_path = _resolve_image_path(product.get("image_path", ""))
if _img_path and os.path.isfile(_img_path):
try:
with open(_img_path, "rb") as f:
reference_images = [f.read()]
except Exception as e: # noqa: BLE001
logger.warning("裂变补图参考图读取失败,无参考图模式: %s", e)
# R5多图补图也按场景分组重生失败分镜时选对应场景图
images_by_scene: dict[str, list[bytes]] = {}
for _im in (product.get("images") or []):
_p = _resolve_image_path(_im.get("path", ""))
if _p and os.path.isfile(_p):
try:
with open(_p, "rb") as _f:
images_by_scene.setdefault(_im.get("scene") or "primary", []).append(_f.read())
except Exception: # noqa: BLE001
pass
if reference_images and not images_by_scene.get("primary"):
images_by_scene.setdefault("primary", []).extend(reference_images)
upload_base = get_settings().UPLOAD_ABS_ROOT
img_dir = os.path.join(upload_base, str(ft.workspace_id), f"fission_{ft.id}", str(fn.seq))
os.makedirs(img_dir, exist_ok=True)
recovered = 0
# role → 在 images 列表里的位置(保持原顺序/seq 不乱)
role_idx = {img.get("role"): i for i, img in enumerate(images)}
for role in failed:
try:
results = asyncio.run(generate_storyboard_images(
client=clients, note=note, product=product,
image_count=image_count, reference_images=reference_images,
target_role=role,
images_by_scene=images_by_scene or None,
))
except Exception as exc: # noqa: BLE001
logger.error("裂变补图 seq=%s role=%s 仍失败: %s", fn.seq, role, exc)
continue
r = next((x for x in results if x.get("role") == role), None)
if not r or r.get("error") or not r.get("image_bytes"):
logger.warning("裂变补图 seq=%s role=%s 引擎返回空/error", fn.seq, role)
continue
try:
processed = process_image(r["image_bytes"], aspect_ratio="3:4", resample_strength=1)
except Exception: # noqa: BLE001
processed = r["image_bytes"]
idx = role_idx.get(role, len(images))
seq_no = idx + 1
fname = f"{seq_no:02d}_{role}.jpg"
with open(os.path.join(img_dir, fname), "wb") as f:
f.write(processed)
entry = {"role": role, "seq": seq_no,
"url": f"/uploads/{ft.workspace_id}/fission_{ft.id}/{fn.seq}/{fname}"}
if idx < len(images):
images[idx] = entry
else:
images.append(entry)
recovered += 1
fn.images_json = _json.dumps(images, ensure_ascii=False)
still = len(_failed_roles(images))
fn.status = "image_done" if still == 0 else fn.status
db.commit()
return {"seq": fn.seq, "retried": len(failed), "recovered": recovered, "still_failed": still}