SHOW CORTEX BASE MODELS¶
Lists the Cortex Base Models available to your current role, along with their lifecycle status, in-region and cross-region availability, legacy date, and end-of-life date.
Cortex Base Models are the LLMs that Snowflake provides for use with Cortex AI Functions and related features. Unlike SHOW MODELS, which lists all model objects (including user-created models), this command is scoped to Cortex Base Models and returns additional columns that describe each model’s lifecycle stage and availability. Use this command to determine which models are currently available to your current role.
- See also:
Syntax¶
Parameters¶
LIKE 'pattern'Optionally filters the command output by object name. The filter uses case-insensitive pattern matching, with support for SQL wildcard characters (
%and_).For example, the following patterns return the same results:
... LIKE '%testing%' ...... LIKE '%TESTING%' ...
Default: No value (no filtering is applied to the output).
IN [ SCHEMA ] SNOWFLAKE.MODELSScopes the command to the
SNOWFLAKE.MODELSschema, where all Cortex Base Model objects are stored. Snowflake recommends specifying this clause.If you omit this clause, the command follows standard SHOW scoping:
- If the session has a current database, the command is scoped to that database
(and to the current schema, if one is set). Cortex Base Models exist only in
SNOWFLAKE.MODELS, so an unqualified command returns no rows when another database is current, even if the current role has the required model privileges. - If the session has no current database, the command uses account scope and can return Cortex Base Models.
To list Cortex Base Models regardless of the session’s current database, specify
IN SCHEMA SNOWFLAKE.MODELS.- If the session has a current database, the command is scoped to that database
(and to the current schema, if one is set). Cortex Base Models exist only in
STARTS WITH 'name_string'Optionally filters the command output based on the characters that appear at the beginning of the object name. The string must be enclosed in single quotes and is case sensitive.
For example, the following strings return different results:
... STARTS WITH 'B' ...... STARTS WITH 'b' ...
Default: No value (no filtering is applied to the output)
LIMIT rowsOptionally limits the maximum number of rows returned. The actual number of rows returned might be less than the specified limit. For example, the number of existing objects is less than the specified limit.
Default: No value (no limit is applied to the output).
Output¶
The command output provides the following columns:
| Column | Description |
|---|---|
created_on | Date and time when the model object was created. |
name | Name of the Cortex Base Model. |
model_type | Type of the model object. For Cortex Base Models, this is CORTEX_BASE. |
database_name | Database in which the model is stored. |
schema_name | Schema in which the model is stored. |
owner | Role that owns the model object. |
lifecycle_status | Current lifecycle stage of the model, or
|
in_region_availability | Array of Snowflake regions where the model is deployed and served
directly in that region (without cross-region inference), for example
This column is |
legacy_date | The date the model entered or will enter its legacy period, as a
free-form string. |
eol_date | The end-of-life indicator for the model, as a free-form string. This is
typically a date (for example, |
cross_region_availability | Array of the cross-region inference
settings from which the model can be reached, for example
|
Access control requirements¶
The output is filtered based on the user’s model RBAC grants. Only models for
which the current role has been granted access appear in the results. If the
command is scoped to a database other than SNOWFLAKE, the result can be empty
even when those grants exist. For information about granting access to Cortex
Base Models, see
Model access and privileges.
Note
The SNOWFLAKE.MODELS schema is automatically populated with Cortex Base Model objects and is refreshed on a
daily basis. If you want to see newly available models immediately without waiting for the next daily refresh,
an ACCOUNTADMIN can run the refresh stored procedure on demand:
For details, see Role-based access control (RBAC).
Usage notes¶
- Cortex Base Models exist only in
SNOWFLAKE.MODELS. UseSHOW CORTEX BASE MODELS IN SCHEMA SNOWFLAKE.MODELSso the command isn’t scoped to the session’s current database. OmittingIN SCHEMA SNOWFLAKE.MODELScan return zero rows even when the current role has the correctCORTEX-MODEL-ROLE-*grants. - This command returns only Cortex Base Models. To list all model objects in your account, including Cortex Base Models and user models, use SHOW MODELS.
- A model that appears in the results with a region in
in_region_availabilitymay still be unavailable to invoke if your account is in a different region and cross-region inference is not enabled. Use thecross_region_availabilitycolumn to see which cross-region settings can reach the model. See Cross-region inference.
- The command doesn’t require a running warehouse to execute.
- The command only returns objects for which the current user’s current role has been granted at least one access privilege.
- The MANAGE GRANTS access privilege implicitly allows its holder to see every object in the account. By default, only the account administrator (users with the ACCOUNTADMIN role) and security administrator (users with the SECURITYADMIN role) have the MANAGE GRANTS privilege.
-
To post-process the output of this command, you can use the pipe operator (
->>) or the RESULT_SCAN function. Both constructs treat the output as a result set that you can query.For example, you can use the pipe operator or RESULT_SCAN function to select specific columns from the SHOW command output or filter the rows.
When you refer to the output columns, use double-quoted identifiers for the column names. For example, to select the output column
type, specifySELECT "type".You must use double-quoted identifiers because the output column names for SHOW commands are in lowercase. The double quotes ensure that the column names in the SELECT list or WHERE clause match the column names in the SHOW command output that was scanned.
Examples¶
List all Cortex Base Models accessible to the current role. Specify
IN SCHEMA SNOWFLAKE.MODELS so the listing isn’t limited to the session’s
current database:
List Cortex Base Models whose names contain claude: