mirror of
https://github.com/songquanpeng/one-api.git
synced 2025-09-17 17:16:38 +08:00
33 lines
746 B
Go
33 lines
746 B
Go
package groq
|
|
|
|
// ModelList is a list of models that can be used with Groq.
|
|
//
|
|
// https://console.groq.com/docs/models
|
|
var ModelList = []string{
|
|
// Regular Models
|
|
"distil-whisper-large-v3-en",
|
|
"gemma2-9b-it",
|
|
"llama-3.3-70b-versatile",
|
|
"llama-3.1-8b-instant",
|
|
"llama-guard-3-8b",
|
|
"llama3-70b-8192",
|
|
"llama3-8b-8192",
|
|
"mixtral-8x7b-32768",
|
|
"whisper-large-v3",
|
|
"whisper-large-v3-turbo",
|
|
|
|
// Preview Models
|
|
"qwen-qwq-32b",
|
|
"mistral-saba-24b",
|
|
"qwen-2.5-coder-32b",
|
|
"qwen-2.5-32b",
|
|
"deepseek-r1-distill-qwen-32b",
|
|
"deepseek-r1-distill-llama-70b-specdec",
|
|
"deepseek-r1-distill-llama-70b",
|
|
"llama-3.2-1b-preview",
|
|
"llama-3.2-3b-preview",
|
|
"llama-3.2-11b-vision-preview",
|
|
"llama-3.2-90b-vision-preview",
|
|
"llama-3.3-70b-specdec",
|
|
}
|