qua_drop_external_ai_model

qua_drop_external_ai_model#

Removes an external AI model registration from the instance of Querona. Only the registration is removed — the provider-side model is untouched.

Syntax#

qua_drop_external_ai_model [ @name = ] N'name'

Arguments#

[ @name = ] N’name

The registration name of the model to remove, as given to qua_add_external_ai_model. sysname. Matching is case-insensitive.

Remarks#

The procedure removes only AI-model registrations: a regular connection that happens to have the same name is never dropped by this procedure. An error is raised when no AI model with the given name is registered.

Example#

EXEC qua_drop_external_ai_model @name = N'MyClaude';

See Also#