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
16 lines
268 B
Go
16 lines
268 B
Go
package mistral
|
|
|
|
var ModelList = []string{
|
|
"open-mistral-7b",
|
|
"open-mixtral-8x7b",
|
|
"mistral-small-latest",
|
|
"mistral-medium-latest",
|
|
"mistral-large-latest",
|
|
"mistral-embed",
|
|
// Latest models
|
|
"mistral-medium-3",
|
|
"codestral",
|
|
"ministral-3b",
|
|
"ministral-8b",
|
|
}
|