The DROP_MODEL_PROFILE procedure is used to drop a registered model parameter.
Note
This process is supported starting from V4.6.0 BP1.
Syntax
PROCEDURE drop_model_profile(
IN model VARCHAR(512));
Parameters
Parameter |
Description |
Type |
Value range |
Nullable |
|---|---|---|---|---|
| model | The full model name, in the format ofprovider/model_name. |
VARCHAR(512) | NO |
Examples
CALL DBMS_AI_SERVICE.DROP_MODEL_PROFILE('aliyun/qwen-plus');
