The describe()
function returns information about a model.
Use the describe()
method to get information about a model:
Server server = MindsDB.connect();
Project mindsdb = server.getProject("mindsdb");
Model llama3 = mindsdb.getModel("llama3");
Table modelDescription = llama3.describe();