dograh/api/services/pricing/registry.py

17 lines
342 B
Python
Raw Permalink Normal View History

2025-09-09 14:37:32 +05:30
"""
Main pricing registry that combines all service type pricing models.
"""
from typing import Dict
from .llm import LLM_PRICING
from .stt import STT_PRICING
from .tts import TTS_PRICING
# Combined pricing registry for all service types
PRICING_REGISTRY: Dict = {
"llm": LLM_PRICING,
"tts": TTS_PRICING,
"stt": STT_PRICING,
}