MiniMax
Chinese AI provider with multimodal generation and TTS capabilities.
Overview
MiniMax is a leading Chinese AI company specializing in large language models and multimodal AI technologies, including text generation, image understanding, text-to-speech, and video generation.
Official Website: https://www.minimaxi.com API Documentation: https://platform.minimaxi.com/docs
Key Features
- Multimodal Generation — Text, image, audio, video
- Text-to-Speech — High-quality speech synthesis
- Video Generation — Text-to-video creation
- Bilingual Support — Strong Chinese and English capabilities
- Function Calling — Tool use support
Usage Example
from openai import OpenAI
client = OpenAI(
api_key="YOUR_API_KEY",
base_url="https://api.yuhuanstudio.com/v1"
)
response = client.chat.completions.create(
model="model-id",
messages=[{"role": "user", "content": "你好!"}]
)
print(response.choices[0].message.content)Available Models
Use the Models API to query available models:
curl https://api.yuhuanstudio.com/v1/models?provider=minimax \
-H "Authorization: Bearer YOUR_API_KEY"Models and pricing are synced automatically. Check the dashboard for current availability and rates.
Official Resources
How is this guide?