Merge pull request #2291 from nikmosi/main

Update Groq's available models
This commit is contained in:
Tekky 2024-10-22 23:27:52 +02:00 committed by GitHub
commit ed9556315b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -8,7 +8,26 @@ class Groq(Openai):
url = "https://console.groq.com/playground"
working = True
default_model = "mixtral-8x7b-32768"
models = ["mixtral-8x7b-32768", "llama2-70b-4096", "gemma-7b-it"]
models = [
"distil-whisper-large-v3-en",
"gemma2-9b-it",
"gemma-7b-it",
"llama3-groq-70b-8192-tool-use-preview",
"llama3-groq-8b-8192-tool-use-preview",
"llama-3.1-70b-versatile",
"llama-3.1-8b-instant",
"llama-3.2-1b-preview",
"llama-3.2-3b-preview",
"llama-3.2-11b-vision-preview",
"llama-3.2-90b-vision-preview",
"llama-guard-3-8b",
"llava-v1.5-7b-4096-preview",
"llama3-70b-8192",
"llama3-8b-8192",
"mixtral-8x7b-32768",
"whisper-large-v3",
"whisper-large-v3-turbo",
]
model_aliases = {"mixtral-8x7b": "mixtral-8x7b-32768", "llama2-70b": "llama2-70b-4096"}
@classmethod
@ -21,4 +40,4 @@ class Groq(Openai):
) -> AsyncResult:
return super().create_async_generator(
model, messages, api_base=api_base, **kwargs
)
)