llm_models: keeping up with LLM frontier model versions

The Problem

With the flurry of new LLMs published almost daily, it may be
confusing for developers to keep track of which exact models are
available through various API services at any given time. When Gemini 3 was released a couple of days …


This content originally appeared on DEV Community and was authored by Ljubomir Buturovic

The Problem

With the flurry of new LLMs published almost daily, it may be
confusing for developers to keep track of which exact models are
available through various API services at any given time. When Gemini 3 was released a couple of days ago, I could not find the correct model name for a while (turned out to be "gemini-3-pro-preview")

The Solution

I built (with Claude Code help) a simple CLI app to list available models for the major providers.

Usage


$ ./llm_models.py -h
usage: llm_models.py [-h] -p {OpenAI,Anthropic,xAI,GoogleAI,VertexAI} [-r REGION]

List available LLM models from various providers

options:
  -h, --help            show this help message and exit
  -p {OpenAI,Anthropic,xAI,GoogleAI,VertexAI}, --provider {OpenAI,Anthropic,xAI,GoogleAI,VertexAI}
                        The LLM provider backend.
                        - 'GoogleAI': Google AI Studio (API Key). Global/Auto-routed.
                        - 'VertexAI': Google Cloud Vertex AI (IAM Auth). Region-specific.
  -r REGION, --region REGION
                        Google Cloud region (e.g., 'us-central1').
                        *Required* if provider is VertexAI. Ignored for other providers.

$ ./llm_models.py -p Anthropic
Listing available Anthropic models...
================================================================================
Model: claude-haiku-4-5-20251001 (Claude Haiku 4.5)
Model: claude-sonnet-4-5-20250929 (Claude Sonnet 4.5)
Model: claude-opus-4-1-20250805 (Claude Opus 4.1)
Model: claude-opus-4-20250514 (Claude Opus 4)
Model: claude-sonnet-4-20250514 (Claude Sonnet 4)
Model: claude-3-7-sonnet-20250219 (Claude Sonnet 3.7)
Model: claude-3-5-haiku-20241022 (Claude Haiku 3.5)
Model: claude-3-haiku-20240307 (Claude Haiku 3)
Model: claude-3-opus-20240229 (Claude Opus 3)

Installation

  • $ git clone git@github.com:ljbuturovic/llm_models.git
  • $ python3 -m venv venv
  • $ source venv/bin/activate
  • $ ./llm_models.py -p GoogleAI

What's next

Give it a try and let me know what you think in the comments!


This content originally appeared on DEV Community and was authored by Ljubomir Buturovic


Print Share Comment Cite Upload Translate Updates
APA

Ljubomir Buturovic | Sciencx (2025-11-23T00:02:38+00:00) llm_models: keeping up with LLM frontier model versions. Retrieved from https://www.scien.cx/2025/11/23/llm_models-keeping-up-with-llm-frontier-model-versions-3/

MLA
" » llm_models: keeping up with LLM frontier model versions." Ljubomir Buturovic | Sciencx - Sunday November 23, 2025, https://www.scien.cx/2025/11/23/llm_models-keeping-up-with-llm-frontier-model-versions-3/
HARVARD
Ljubomir Buturovic | Sciencx Sunday November 23, 2025 » llm_models: keeping up with LLM frontier model versions., viewed ,<https://www.scien.cx/2025/11/23/llm_models-keeping-up-with-llm-frontier-model-versions-3/>
VANCOUVER
Ljubomir Buturovic | Sciencx - » llm_models: keeping up with LLM frontier model versions. [Internet]. [Accessed ]. Available from: https://www.scien.cx/2025/11/23/llm_models-keeping-up-with-llm-frontier-model-versions-3/
CHICAGO
" » llm_models: keeping up with LLM frontier model versions." Ljubomir Buturovic | Sciencx - Accessed . https://www.scien.cx/2025/11/23/llm_models-keeping-up-with-llm-frontier-model-versions-3/
IEEE
" » llm_models: keeping up with LLM frontier model versions." Ljubomir Buturovic | Sciencx [Online]. Available: https://www.scien.cx/2025/11/23/llm_models-keeping-up-with-llm-frontier-model-versions-3/. [Accessed: ]
rf:citation
» llm_models: keeping up with LLM frontier model versions | Ljubomir Buturovic | Sciencx | https://www.scien.cx/2025/11/23/llm_models-keeping-up-with-llm-frontier-model-versions-3/ |

Please log in to upload a file.




There are no updates yet.
Click the Upload button above to add an update.

You must be logged in to translate posts. Please log in or register.