RohitChandramouli6618's picture
Refactor agent architecture, improve heuristics logic, enhance parser robustness, simplify config, and optimize Docker setup for HF deployment
ad80dda
Raw
History Blame Contribute Delete
268 Bytes
"""Shared transcript type aliases.
The canonical definitions live in models.py.
This module re-exports them so transcript users can import from transcript.types.
"""
from models import Speaker, Turn, TurnType
__all__ = [
"Turn",
"Speaker",
"TurnType",
]