MindsDB offers a wide range of AI engines used to create models and incorporate them in the data landscape as virtual AI tables. MindsDB abstracts AI models as virtual tables, or Generative AI Tables, that can generate data from the underlying model upon being queried.
This section contains instructions on how to create and deploy models within MindsDB, utilizing different AI/ML frameworks.
Metadata about AI handlers and AI enginesAI handlers represent a raw implementation of the integration between MindsDB and an AI/ML framework. These are used to create AI engines.Here is how you can query for all the available AI handlers used to create AI engines.
Copy
Ask AI
SELECT *FROM information_schema.handlersWHERE type = 'ml';
Or, alternatively:
Copy
Ask AI
SHOW HANDLERSWHERE type = 'ml';
And here is how you can query for all the created AI engines: