Remove and ML Engine

Here is how you can remove one of the ML engines directly from Java code:

Syntax

 /**
  * Drop an ML engine
  * 
  * @param name Name of the ML engine
  */
 public void dropMLEngine(String name);

Example

server.dropMLEngine("gemini_engine");
Updated on