Skip to main content

How to disable AI features?

How to disable AI features?

Khizar Tanveer avatar
Written by Khizar Tanveer
Updated over 3 months ago

You can manage AI functionality in the Unlayer editor through the features.ai configuration in your unlayer.init() call.

Disable All AI Features

To turn off every AI capability in the editor:

unlayer.init({   features: {     ai: false   } });

Disable Specific AI Features

If you want to keep AI enabled but disable certain features, you can target them individually as shown below.

Smart Buttons

unlayer.init({   features: {     ai: {       smartButtons: false     }   } });

Magic Image

unlayer.init({   features: {     ai: {       magicImage: false     }   } });

Smart Headings

unlayer.init({   features: {     ai: {       smartHeadings: false     }   } });
Did this answer your question?