modsetter--surfsense
6ede33ccdb
Build and Push Docker Images / create_manifest (web, surfsense-web, , cpu) (push) Has been cancelled
Build and Push Docker Images / finalize_release (push) Has been cancelled
Obsidian Plugin Lint / lint (push) Has been cancelled
Build and Push Docker Images / build (./surfsense_web, cpu, ./surfsense_web/Dockerfile, web, surfsense-web, ubuntu-24.04-arm, linux/arm64, arm64, , runner, false, cpu) (push) Has been cancelled
Build and Push Docker Images / build (./surfsense_web, cpu, ./surfsense_web/Dockerfile, web, surfsense-web, ubuntu-latest, linux/amd64, amd64, , runner, false, cpu) (push) Has been cancelled
Build and Push Docker Images / compute_version (push) Has been cancelled
Build and Push Docker Images / build (./surfsense_backend, cpu, ./surfsense_backend/Dockerfile, backend, surfsense-backend, ubuntu-24.04-arm, linux/arm64, arm64, , production, false, cpu) (push) Has been cancelled
Build and Push Docker Images / build (./surfsense_backend, cpu, ./surfsense_backend/Dockerfile, backend, surfsense-backend, ubuntu-latest, linux/amd64, amd64, , production, false, cpu) (push) Has been cancelled
Build and Push Docker Images / build (./surfsense_backend, cu126, ./surfsense_backend/Dockerfile, backend, surfsense-backend, ubuntu-24.04-arm, linux/arm64, arm64, -cuda126, production, true, cuda126) (push) Has been cancelled
Build and Push Docker Images / build (./surfsense_backend, cu126, ./surfsense_backend/Dockerfile, backend, surfsense-backend, ubuntu-latest, linux/amd64, amd64, -cuda126, production, true, cuda126) (push) Has been cancelled
Build and Push Docker Images / build (./surfsense_backend, cu128, ./surfsense_backend/Dockerfile, backend, surfsense-backend, ubuntu-24.04-arm, linux/arm64, arm64, -cuda, production, true, cuda) (push) Has been cancelled
Build and Push Docker Images / build (./surfsense_backend, cu128, ./surfsense_backend/Dockerfile, backend, surfsense-backend, ubuntu-latest, linux/amd64, amd64, -cuda, production, true, cuda) (push) Has been cancelled
Build and Push Docker Images / verify_digests (push) Has been cancelled
Build and Push Docker Images / create_manifest (backend, surfsense-backend, , cpu) (push) Has been cancelled
Build and Push Docker Images / create_manifest (backend, surfsense-backend, -cuda, cuda) (push) Has been cancelled
Build and Push Docker Images / create_manifest (backend, surfsense-backend, -cuda126, cuda126) (push) Has been cancelled
85 行
2.7 KiB
Python
85 行
2.7 KiB
Python
"""``podcasts`` table: a generated podcast, its brief, transcript, and state."""
|
|
|
|
from __future__ import annotations
|
|
|
|
from sqlalchemy import (
|
|
Column,
|
|
Enum as SQLAlchemyEnum,
|
|
ForeignKey,
|
|
Integer,
|
|
String,
|
|
Text,
|
|
)
|
|
from sqlalchemy.dialects.postgresql import JSONB
|
|
from sqlalchemy.orm import relationship
|
|
|
|
from app.db import BaseModel, TimestampMixin
|
|
|
|
from .enums import PodcastStatus
|
|
|
|
|
|
class Podcast(BaseModel, TimestampMixin):
|
|
"""A podcast across its whole lifecycle: brief, transcript, audio, status.
|
|
|
|
``spec`` (the reviewable brief) and ``podcast_transcript`` are JSONB so the
|
|
flexible Pydantic shapes can evolve without migrations. ``spec_version``
|
|
backs optimistic concurrency on brief edits. Rendered audio lives in the
|
|
object store, addressed by ``storage_backend`` + ``storage_key`` rather than
|
|
a raw path.
|
|
"""
|
|
|
|
__tablename__ = "podcasts"
|
|
|
|
title = Column(String(500), nullable=False)
|
|
|
|
status = Column(
|
|
SQLAlchemyEnum(
|
|
PodcastStatus,
|
|
name="podcast_status",
|
|
create_type=False,
|
|
values_callable=lambda x: [e.value for e in x],
|
|
),
|
|
nullable=False,
|
|
default=PodcastStatus.PENDING,
|
|
server_default=PodcastStatus.PENDING.value,
|
|
index=True,
|
|
)
|
|
|
|
# The source material the episode is generated from. Persisted because
|
|
# drafting happens after the brief gate, long after creation.
|
|
source_content = Column(Text, nullable=True)
|
|
|
|
# The reviewable brief (PodcastSpec); null until the brief gate is reached.
|
|
spec = Column(JSONB, nullable=True)
|
|
# Bumped on every spec edit; guards concurrent edits at the brief gate.
|
|
spec_version = Column(Integer, nullable=False, default=1, server_default="1")
|
|
|
|
# The drafted dialogue (Transcript); null until drafting completes.
|
|
podcast_transcript = Column(JSONB, nullable=True)
|
|
|
|
# Where the rendered audio lives in the object store; null until READY.
|
|
storage_backend = Column(String(32), nullable=True)
|
|
storage_key = Column(Text, nullable=True)
|
|
duration_seconds = Column(Integer, nullable=True)
|
|
|
|
# Human-readable reason when status is FAILED.
|
|
error = Column(Text, nullable=True)
|
|
|
|
# Legacy local audio path; retained for back-compat until cutover.
|
|
file_location = Column(Text, nullable=True)
|
|
|
|
workspace_id = Column(
|
|
Integer,
|
|
ForeignKey("workspaces.id", ondelete="CASCADE"),
|
|
nullable=False,
|
|
)
|
|
workspace = relationship("Workspace", back_populates="podcasts")
|
|
|
|
thread_id = Column(
|
|
Integer,
|
|
ForeignKey("new_chat_threads.id", ondelete="SET NULL"),
|
|
nullable=True,
|
|
index=True,
|
|
)
|
|
thread = relationship("NewChatThread")
|