""" cf-voice: CircuitForge voice annotation pipeline. Quick start (mock mode, no GPU required): from cf_voice.context import ContextClassifier classifier = ContextClassifier.mock() async for frame in classifier.stream(): print(frame.label, frame.confidence) Set CF_VOICE_MOCK=1 in the environment to activate mock mode globally. """ from cf_voice.models import VoiceFrame __version__ = "0.1.0" __all__ = ["VoiceFrame"]