| """ | |
| Medical Transcription Pipeline | |
| Интеграция STT + Knowledge Base + LLM Correction | |
| """ | |
| from .medical_pipeline import MedicalTranscriptionPipeline | |
| from .pipeline_config import PipelineConfig | |
| __all__ = [ | |
| 'MedicalTranscriptionPipeline', | |
| 'PipelineConfig' | |
| ] | |