mirror of
https://github.com/songquanpeng/one-api.git
synced 2025-09-17 09:16:36 +08:00
- Add 50+ new AI models across 10 major providers - Update OpenAI pricing structure for GPT-5/4.1/o3/o4 series - Add Claude 4/4.1 series support with accurate pricing - Include Gemini 2.5 series models and pricing - Add DeepSeek V3 and R1 models with latest pricing - Update completion ratios for accurate output token billing - Add AWS Bedrock channel-specific pricing support - Enhance model organization with clear categorization - Maintain backward compatibility for existing models Providers updated: OpenAI, Anthropic, Google, DeepSeek, Groq, MiniMax, Mistral, Cohere, SiliconFlow, TogetherAI Closes: sync-models-pricing feature request
21 lines
381 B
Go
21 lines
381 B
Go
package minimax
|
|
|
|
// https://www.minimaxi.com/document/guides/chat-model/V2?id=65e0736ab2845de20908e2dd
|
|
|
|
var ModelList = []string{
|
|
"abab6.5-chat",
|
|
"abab6.5s-chat",
|
|
"abab6-chat",
|
|
"abab5.5-chat",
|
|
"abab5.5s-chat",
|
|
"MiniMax-VL-01",
|
|
"MiniMax-Text-01",
|
|
// Latest models
|
|
"MiniMax-M1",
|
|
"MiniMax-Speech-2.5",
|
|
"MiniMax-Speech-02",
|
|
"MiniMax-Hailuo-02",
|
|
"music-01",
|
|
"Image-01",
|
|
}
|