mirror of
https://github.com/dograh-hq/dograh.git
synced 2026-06-16 08:25:18 +02:00
32 lines
732 B
Python
32 lines
732 B
Python
|
|
"""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",
|
|||
|
|
]
|