Best Plugin for OpenAi API in Wordpress?

Hi, I want to test the API with some Wordpress plugin that allows to generate articles. I already have the wordpress website, I just want to add articles to it. Which one do you recommend?

On the other hand I read about people who program their own scripts (I am not a programmer) but is there any guide? I would like to put together something that generates an article with some H2, a Youtube video and at least 2 images in the post.

Thank you.

Any ideas? Or a plugin? So I can take advantage of the API. Thanks

Best bet would be to bing or google for the topic, a quick search returned

https://wordpress.com/plugins/browse/openai

I’m using Article Generator by neatscriptlab. net, simple and easy to use.

I am using MagicAI, it has got many features and plus the abilites you are looking for.

we are developing this plugin it already has lots of features and most of them are free features. it just not supports openai but supports hundreds of models thanks to openrouter.

wpaimuse .com

Use OpenAI Form Completion for manual selections, and OpenAI Bulk Editor for batch processes such as post translation or SEO optimization of product descriptions:

There is a new plugin that came out, I got access from the developer.
It’s basically like having Zapier built into Wordpress, and it supports OpenAI API calls and some other nodes. Pretty neat. It’s called AI Workflow Automation.
Wpaiworkflowautomation dot com

1 Like

Will that allow me to use a specific Assistant that I have trained? I’m so close in this custom plugin I’ve been making, but getting it to use my Assistant using the Assistant ID has proven annoyingly difficult.

Could provide some details about how you are planning to use the Assistant?

Do you need to chat with the assistant from the admin panel? Do you plan on allowing the end user/visitor to chat with it from the frontend (like a chat bot)? Do you need the assistant to generate contents and/or perform background tasks?

Those all would be great, at this point I just need users to be able to interface with the trained bot on the front end. I have a client with over 15 years worth of data behind a paywall, this will allow subscribers to access it in a far more effective way.

That’s my first goal, having the trained assistant on the back end to generate content would be great as well, but she could probably do that on the front end if I had to wait on that functionality.

This OpenAI Assistant Manager will allow you to interface with the trained assistant either from admin dashboard or the frontend via the assistant permalink and/or the thread permalink (for authorized user).

To lock the access behind the paywall you can implement your license logic via 2 hooks:


add_filter('lam_assistant_can_assist',function($can,$assistant,$user_id){
        
    // add your logic using $user_id
        
    return $can;
        
},10,3);
    
add_filter('lam_user_can_post',function($can,$user_id,$assistant,$thread){
        
    // add your logic using $user_id
        
    return $can;
        
},10,4);

erusev/parsedown is used to parse the markdown response from the backend and Prism.js is used to parse code snippets from the frontend.

Note that for now even if you can import an existing assistant to your WP dashboard your assistant must be trained from the OpenAI Platform. OpenAI Assistant Manager is just providing the “chat” interface.

If anyone is interested I am also planning to make it compatible with Bulk Task Editor to allow the assistant to perform tasks in the background: