DESCRIBE MODEL

Shows one registered AI model's full non-secret configuration as property/value rows.

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

Syntax

DESCRIBE MODEL [IF EXISTS] <name>

Description

## Overview DESCRIBE MODEL returns property/value rows covering: name, api_format, model (the provider model id), model_type, connection, system_prompt, parameters (the default request-parameter JSON), one option.<key> row per extra option, created_at, and updated_at. Read-only. Credential material is never part of the output: authentication lives on the connection's vault credential and is only resolved server-side at invocation time.

Parameters

NameTypeDescription
nameThe registry name of the model to describe, matched case-insensitively.
IF EXISTSTurns a missing model into a no-op success message instead of an error.

Examples

DESCRIBE MODEL support_triage;
DESCRIBE MODEL IF EXISTS maybe_dropped;

Pitfalls

See Also

Open in interactive docs →   DeltaForge home →