Spaces:
Paused
Paused
File size: 594 Bytes
45ee481 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 | """
Inference module for AI Executive System.
This module handles:
- Voice model loading and inference
- Refinement model loading and inference
- Dual-LLM pipeline orchestration
- Prompt templates management
"""
from .voice_model import VoiceModel
from .refinement_model import RefinementModel
from .dual_llm_pipeline import DualLLMPipeline
from .prompt_templates import (
VOICE_MODEL_SYSTEM_PROMPT,
REFINEMENT_MODEL_SYSTEM_PROMPT,
)
__all__ = [
"VoiceModel",
"RefinementModel",
"DualLLMPipeline",
"VOICE_MODEL_SYSTEM_PROMPT",
"REFINEMENT_MODEL_SYSTEM_PROMPT",
]
|