mirror of
https://github.com/MODSetter/SurfSense.git
synced 2026-06-20 21:18:13 +02:00
24 lines
471 B
Python
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",
|
|
]
|