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
33 lines
818 B
Go
33 lines
818 B
Go
package groq
|
|
|
|
// https://console.groq.com/docs/models
|
|
|
|
var ModelList = []string{
|
|
"gemma2-9b-it",
|
|
"llama-3.1-70b-versatile",
|
|
"llama-3.1-8b-instant",
|
|
"llama-3.2-11b-text-preview",
|
|
"llama-3.2-11b-vision-preview",
|
|
"llama-3.2-1b-preview",
|
|
"llama-3.2-3b-preview",
|
|
"llama-3.2-90b-text-preview",
|
|
"llama-3.2-90b-vision-preview",
|
|
"llama-guard-3-8b",
|
|
"llama3-70b-8192",
|
|
"llama3-8b-8192",
|
|
"llama3-groq-70b-8192-tool-use-preview",
|
|
"llama3-groq-8b-8192-tool-use-preview",
|
|
"llava-v1.5-7b-4096-preview",
|
|
"mixtral-8x7b-32768",
|
|
"distil-whisper-large-v3-en",
|
|
"whisper-large-v3",
|
|
"whisper-large-v3-turbo",
|
|
"deepseek-r1-distill-llama-70b-specdec",
|
|
"deepseek-r1-distill-llama-70b",
|
|
// Latest featured models
|
|
"llama-3.3-70b-versatile",
|
|
"openai-gpt-oss-20b",
|
|
"openai-gpt-oss-120b",
|
|
"meta-llama/llama-guard-4-12b",
|
|
}
|