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

24 lines
471 B
Python

"""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",
]