• Product

  • Solutions

  • Developers

  • Docs

  • Pricing

  • Cloud

Search icon
Strapi plugin logo for Open AI

Open AI
Made by Strapi badge
Made by Strapi

The official plugin that allows you to create Open AI completion from a prompt

Strapi plugin Open AI completion

The official plugin that allows you to create Open AI completion from a prompt

Features

Installation

To install this plugin, you need to add an NPM dependency to your Strapi application.

# Using Yarn
yarn add @strapi/plugin-open-ai

# Or using NPM
npm install @strapi/plugin-open-ai

Configuration

./config/plugins.js

1
2
3
4
5
6
7
8
9
10
module.exports = ({ env }) => ({
  // ...
  'open-ai': {
    enabled: true,
    config: {
      API_TOKEN: '<your-open-ai-token>',
    },
  },
  // ...
});

Then, you'll need to build your admin panel:

# Using Yarn
yarn build

# Or using NPM
npm run build

How it works

You can create AI completions in the content-manager view, when creating or updating an entry. It is mandatory to have a working Open AI API token in your ./config/plugins.js for the plugin to work.

You have two tabs when you open the plugin modal:

  • Prompt: This is where you can write your prompt and generate the completion. Once generated, you will be able to either clear the completion textarea or to copy it in your clipboard. Copying the completion in your clipboard will automatically close the modal.

  • Settings: You can play with some completion API configuration such as selecting your favorite model, having a certain temperature and max_tokens for your completions. It is possible to save your settings!

Note that the plugin will automatically put the temperature value between 0 and 1 and the max_tokens value between 0 and 4096

The plugin has a static list of Open AI models downloaded on late January 2023 (src/server/services/settings.js). It is however possible to download actual models in the settings tab. The select input will automatically be updated with the new models.

Default settings are the following:

  • model: ''
  • temperature: 1
  • max_tokens: 16
  • models: ...

Please find the Open AI doc for each one of them:

Enjoy!

Install now

npm install @strapi/plugin-open-ai

STATS

17 GitHub stars153 weekly downloads

Last updated

150 days ago

Strapi Version

4.0.0 and above

Author

github profile image for Strapi Solutions SAS
Strapi Solutions SAS

Useful links

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.