SHOW AI PROVIDERS
Lists the registered AI providers, one row per provider. The api_key column is always masked.
Results can be filtered by name pattern or by provider type.
Syntax
SHOW AI PROVIDERS [ LIKE '<pattern>' | TYPE { embedding | rerank | text } ]
Parameters
| Parameter | Description |
|---|---|
LIKE '<pattern>' | Only show providers whose name matches the SQL LIKE pattern. |
TYPE <type> | Only show providers of the given type (embedding, rerank, or text). |
Return columns
| Column | Description |
|---|---|
Name | Provider name. |
Type | Provider type (embedding / rerank / text). |
IsDefault | Whether this provider is the default for its type (true/false). |
Endpoint | Endpoint URL. |
Model | Model name. |
Dimensions | Embedding dimension (embedding providers). |
MaxDocuments | Max documents per rerank request (rerank providers). |
TimeoutMs | Per-request HTTP timeout in milliseconds. |
ApiKey | Masked API key. |
Comment | Provider comment. |
Examples
SHOW AI PROVIDERS;
SHOW AI PROVIDERS LIKE 'open%';
SHOW AI PROVIDERS TYPE rerank;