
Product
Announcing Socket Fix 2.0
Socket Fix 2.0 brings targeted CVE remediation, smarter upgrade planning, and broader ecosystem support to help developers get to zero alerts.
@strapi/plugin-open-ai
Advanced tools
The official plugin that allows you to create Open AI completion from a prompt
The official plugin that allows you to create Open AI completion from a prompt
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
./config/plugins.js
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
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:
Please find the Open AI doc for each one of them:
Enjoy!
FAQs
The official plugin that allows you to create Open AI completion from a prompt
The npm package @strapi/plugin-open-ai receives a total of 46 weekly downloads. As such, @strapi/plugin-open-ai popularity was classified as not popular.
We found that @strapi/plugin-open-ai demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 4 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Product
Socket Fix 2.0 brings targeted CVE remediation, smarter upgrade planning, and broader ecosystem support to help developers get to zero alerts.
Security News
Socket CEO Feross Aboukhadijeh joins Risky Business Weekly to unpack recent npm phishing attacks, their limited impact, and the risks if attackers get smarter.
Product
Socket’s new Tier 1 Reachability filters out up to 80% of irrelevant CVEs, so security teams can focus on the vulnerabilities that matter.