SHOW MODELS

Lists every registered AI model with its provider dialect, provider model id, kind, owning connection, and last update.

Category: ai-modelPrivilege: catalog:read on the control plane.DeltaForge extension

Syntax

SHOW MODELS [LIKE '<pattern>']

Description

## 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.

Parameters

NameTypeDescription
LIKEOptional case-insensitive filter on the model name. Supports the SQL LIKE % wildcard as a prefix, suffix, or both (e.g. 'gpt%', '%embed%').

Examples

SHOW MODELS;
SHOW MODELS LIKE '%embed%';

Pitfalls

See Also

Open in interactive docs →   DeltaForge home →