SurfSense/surfsense_backend/app/podcasts/schemas/__init__.py

25 lines
471 B
Python
Raw Normal View History

"""Pydantic shapes for the podcast brief and transcript."""
from __future__ import annotations
from .spec import (
DurationTarget,
PodcastSpec,
PodcastStyle,
SpeakerRole,
SpeakerSpec,
normalize_language_tag,
)
from .transcript import Transcript, TranscriptTurn
__all__ = [
"DurationTarget",
"PodcastSpec",
"PodcastStyle",
"SpeakerRole",
"SpeakerSpec",
"Transcript",
"TranscriptTurn",
"normalize_language_tag",
]