Content Creator With AI
Create Content With Open AI & Gemini
ai-content-creator - Create Content With Open AI & Gemini
⚙️ Plugin Configuration
To start using the plugin, add the following configuration to your Strapi project's config/plugins.js file.
This setup enables the plugin and allows you to configure API keys and specify which Content Types the AI button should appear on.
NOTE: Gemini is not implemented yet. Open AI is ready to use.
1// config/plugins.js (or similar configuration file)
2
3module.exports = ({ env }) => {
4 return {
5 'ai-content-creator': {
6 enabled: true,
7 // The 'resolve' path is typically only required when the plugin is installed locally.
8 // resolve: './src/plugins/ai-content-creator',
9 config: {
10 openAi:{
11 enabled: true,
12 apiKey: env("OPEN_AI_KEY", ""), // Fetches API key from an Environment Variable
13 contentList:["api::webpage.webpage"] // Specifies the Content Types where the plugin's UI should be visible
14 // OR
15 contentList:[] // leave it empty if you want the plugin's UI visible in all pages
16 },
17 gemini:{
18 enabled: true,
19 apiKey: env("GEMINI_AI_KEY", ""), // Fetches API key from an Environment Variable
20 contentList:["api::webpage.webpage"] // Specifies the Content Types where the plugin's UI should be visible
21 // OR
22 contentList:[] // leave it empty if you want the plugin's UI visible in all pages
23 }
24 },
25 },
26 }
27};Usage :
💖 Support This Project
Thank you for considering supporting this project! Maintaining and developing new features for open-source software takes time and effort. You can support us via the channels below:
- GitHub Sponsors: Contribute to the project's future and gain access to special perks.
- External Platform (e.g., Ko-fi): Buy us a one-time "coffee" to say thanks.
💖 Desteğiniz İçin
Bu projeyi desteklediğiniz için teşekkür ederiz! Açık kaynak yazılımların bakımı ve yeni özelliklerin geliştirilmesi zaman ve çaba gerektirir. Bize destek olmak için aşağıdaki kanalları kullanabilirsiniz:
Install now
npm install ai-content-creator
Create your own plugin
Check out the available plugin resources that will help you to develop your plugin or provider and get it listed on the marketplace.