Lists every registered AI model with its provider dialect, provider model id, kind, owning connection, and last update.
SHOW MODELS [LIKE '<pattern>']
## Overview SHOW MODELS returns one row per registered model, ordered by name, with the columns: name, api_format, model, model_type, connection, updated_at. Read-only, and never includes credential material, system prompts, or parameters; use DESCRIBE MODEL <name> for a model's full non-secret configuration.
| Name | Type | Description |
|---|---|---|
LIKE | Optional case-insensitive filter on the model name. Supports the SQL LIKE % wildcard as a prefix, suffix, or both (e.g. 'gpt%', '%embed%'). |
SHOW MODELS;
SHOW MODELS LIKE '%embed%';