How to Use GPT4 or other models in Feedzy AI features? โ
๐ Note: Using the steps below implies having a Developer or Agency subscription, which gives you access to the AI features.
To ensure that you have access to any model you want, we created a filter that you can easily adjust according to your needs.
1
To use the code we prepared, you can install the Code Snippets plugin.
2
Then, go to Snippets > Add New.

3
Add a suggestive title and paste the code.

๐ Note: You can replace the model slug with the one you need, and you can find them here.
add_filter(
'feedzy_openai_models',
function ( $models ) {
$models[] = 'gpt-4'; // Model slug.
return $models;
}
);๐ก Result โ
Once you do this, the model will appear in the dropdown:
