dhvani / analyzer.py
aaronmphilip's picture
Deploy DHVANI inference backend
21132b7 verified
Raw
History Blame Contribute Delete
333 Bytes
"""DHVANI analyzer — re-exports shared core."""
from __future__ import annotations
import sys
from pathlib import Path
_ROOT = Path(__file__).resolve().parent
if str(_ROOT) not in sys.path:
sys.path.insert(0, str(_ROOT))
from core.analyzer import AnalysisResult, VoiceAnalyzer
__all__ = ["AnalysisResult", "VoiceAnalyzer"]