dograh/api/services/voice_prompting_guide/__init__.py

31 lines
732 B
Python
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

"""Voice-prompting guide: atoms × stage lenses, surfaced to the LLM
that authors Dograh voice workflows.
The atom is the unit of guidance. Each atom is registered once; the
resolver assembles stage briefings on demand. See `_base.py` for the
schema and `_registry.py` for the briefing logic.
"""
from api.services.voice_prompting_guide._base import (
AuditCheck,
ReviewSignal,
Stage,
StageLens,
VoicePromptingTopic,
)
from api.services.voice_prompting_guide._registry import (
build_briefing,
get_topic,
list_topic_index,
)
__all__ = [
"AuditCheck",
"ReviewSignal",
"Stage",
"StageLens",
"VoicePromptingTopic",
"build_briefing",
"get_topic",
"list_topic_index",
]