Skip to contents

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

Value

a data frame of models and info

Examples

# \donttest{
  llm_model_list()
#>                                               id        owned_by    created
#> 1                                 llama3-8b-8192            Meta 2023-09-03
#> 2                        llama-3.3-70b-versatile            Meta 2024-12-06
#> 3                                     allam-2-7b           SDAIA 2025-01-23
#> 5            meta-llama/llama-prompt-guard-2-22m            Meta 2025-05-30
#> 6                               mistral-saba-24b      Mistral AI 2025-02-19
#> 7                    moonshotai/kimi-k2-instruct     Moonshot AI 2025-07-13
#> 8                           llama-3.1-8b-instant            Meta 2023-09-03
#> 9                             compound-beta-mini            Groq 2025-03-26
#> 11                                qwen/qwen3-32b   Alibaba Cloud 2025-05-28
#> 12                                    playai-tts          PlayAI 2025-02-27
#> 13                                 compound-beta            Groq 2025-03-02
#> 14                  meta-llama/llama-guard-4-12b            Meta 2025-05-08
#> 16                 deepseek-r1-distill-llama-70b DeepSeek / Meta 2025-01-26
#> 17                                  gemma2-9b-it          Google 2023-09-03
#> 18     meta-llama/llama-4-scout-17b-16e-instruct            Meta 2025-04-05
#> 19                               llama3-70b-8192            Meta 2023-09-03
#> 20                             playai-tts-arabic          PlayAI 2025-02-27
#> 21 meta-llama/llama-4-maverick-17b-128e-instruct            Meta 2025-04-05
#> 22           meta-llama/llama-prompt-guard-2-86m            Meta 2025-05-30
#>    context_window
#> 1            8192
#> 2          131072
#> 3            4096
#> 5             512
#> 6           32768
#> 7          131072
#> 8          131072
#> 9          131072
#> 11         131072
#> 12           8192
#> 13         131072
#> 14         131072
#> 16         131072
#> 17           8192
#> 18         131072
#> 19           8192
#> 20           8192
#> 21         131072
#> 22            512
# }