Files
lijiaoqiao/llm-gateway-competitors/litellm-wheel-src/litellm/llms/minimax/__init__.py

14 lines
202 B
Python
Raw Normal View History

"""
MiniMax LLM Provider
"""
from .text_to_speech.transformation import (
MinimaxException,
MinimaxTextToSpeechConfig,
)
__all__ = [
"MinimaxTextToSpeechConfig",
"MinimaxException",
]