Refactor agent architecture, improve heuristics logic, enhance parser robustness, simplify config, and optimize Docker setup for HF deployment
ad80dda | """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", | |
| ] |