mirror of
https://github.com/xtekky/gpt4free.git
synced 2024-12-23 19:11:48 +03:00
Merge pull request #2291 from nikmosi/main
Update Groq's available models
This commit is contained in:
commit
ed9556315b
@ -8,7 +8,26 @@ class Groq(Openai):
|
|||||||
url = "https://console.groq.com/playground"
|
url = "https://console.groq.com/playground"
|
||||||
working = True
|
working = True
|
||||||
default_model = "mixtral-8x7b-32768"
|
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"}
|
model_aliases = {"mixtral-8x7b": "mixtral-8x7b-32768", "llama2-70b": "llama2-70b-4096"}
|
||||||
|
|
||||||
@classmethod
|
@classmethod
|
||||||
@ -21,4 +40,4 @@ class Groq(Openai):
|
|||||||
) -> AsyncResult:
|
) -> AsyncResult:
|
||||||
return super().create_async_generator(
|
return super().create_async_generator(
|
||||||
model, messages, api_base=api_base, **kwargs
|
model, messages, api_base=api_base, **kwargs
|
||||||
)
|
)
|
||||||
|
Loading…
Reference in New Issue
Block a user