update_libraries() Deprecated #
relationalai.api
#update_libraries(model_name STRING, rai_engine STRING)
A procedure that updates the libraries for the specified model using the specified RelationalAI (RAI) engine.
Requires the all_resource_admin
application role.
IMPORTANT
This procedure has been deprecated.
As of RAI Native App version 2025.2.24-aef52906-1
, this procedure is no longer required.
It has been changed to a no-op and will be removed in a future release.
Parameters#
Name | Type | Description |
---|---|---|
model_name | STRING | The name of the model to update. |
rai_engine | STRING | The name of the RAI engine to use for the update. |
Returns#
OBJECT
Example#
Use the api.update_libraries()
procedure to update the libraries for the specified model:
#-- Update the libraries for the model 'MyModel' using the RAI engine 'my_engine'.
CALL relationalai.api.update_libraries('MyModel', 'my_engine');
See Upgrades for more information on upgrading the RAI Native App.