メインコンテンツまでスキップ
バージョン: 26.2 Preview

DROP AI PROVIDER

Removes an AI provider from the cluster.

A provider that is currently the default for its type cannot be dropped — set another provider as the default for that type first (see SET DEFAULT AI PROVIDER).

Syntax

DROP AI PROVIDER [IF EXISTS] <provider_name>

Parameters

ParameterDescription
IF EXISTSDo nothing (instead of erroring) when the provider does not exist.
provider_nameName of the provider to drop.

Examples

DROP AI PROVIDER openai;
DROP AI PROVIDER IF EXISTS cohere_rerank;

See also