Returns a list of available models in groq, excluding whisper and vision models (for audio and images) and sorting by creation date. See https://console.groq.com/docs/models for more information.
Usage
llm_model_list(API_KEY = Sys.getenv("GROQ_API_KEY"))
Arguments
- API_KEY
groq API key from https://console.groq.com/keys
Examples
# \donttest{
llm_model_list()
#> id owned_by created
#> 2 meta-llama/llama-prompt-guard-2-86m Meta 2025-05-30
#> 4 meta-llama/llama-4-scout-17b-16e-instruct Meta 2025-04-05
#> 6 compound-beta-mini Groq 2025-03-26
#> 7 gemma2-9b-it Google 2023-09-03
#> 8 qwen/qwen3-32b Alibaba Cloud 2025-05-28
#> 9 playai-tts PlayAI 2025-02-27
#> 10 mistral-saba-24b Mistral AI 2025-02-19
#> 11 deepseek-r1-distill-llama-70b DeepSeek / Meta 2025-01-26
#> 12 llama3-70b-8192 Meta 2023-09-03
#> 13 allam-2-7b SDAIA 2025-01-23
#> 14 llama3-8b-8192 Meta 2023-09-03
#> 15 meta-llama/llama-prompt-guard-2-22m Meta 2025-05-30
#> 16 llama-3.1-8b-instant Meta 2023-09-03
#> 17 meta-llama/llama-4-maverick-17b-128e-instruct Meta 2025-04-05
#> 18 llama-3.3-70b-versatile Meta 2024-12-06
#> 19 compound-beta Groq 2025-03-02
#> 20 playai-tts-arabic PlayAI 2025-02-27
#> 21 meta-llama/llama-guard-4-12b Meta 2025-05-08
#> 22 qwen-qwq-32b Alibaba Cloud 2025-03-05
#> context_window
#> 2 512
#> 4 131072
#> 6 131072
#> 7 8192
#> 8 131072
#> 9 8192
#> 10 32768
#> 11 131072
#> 12 8192
#> 13 4096
#> 14 8192
#> 15 512
#> 16 131072
#> 17 131072
#> 18 131072
#> 19 131072
#> 20 8192
#> 21 131072
#> 22 131072
# }