feat: add generation trace and partial-ready workflow status

This commit is contained in:
2026-04-18 21:53:55 +08:00
parent 96dfc677e2
commit e99a7fbe14
36 changed files with 2597 additions and 144 deletions

View File

@@ -67,6 +67,9 @@ class Story(Base):
generation_status: Mapped[str] = mapped_column(
String(32), nullable=False, default="narrative_ready"
)
text_status: Mapped[str] = mapped_column(
String(32), nullable=False, default="ready"
)
image_status: Mapped[str] = mapped_column(
String(32), nullable=False, default="not_requested"
)