strapi-supergpt
Version:
A plugin that gives you the ability to integrate ChatGPT into strapi
26 lines (24 loc) • 604 B
JavaScript
;
module.exports = ({ strapi }) => ({
async prompt(ctx) {
const data = await strapi
.plugin("strapi-supergpt")
.service("superGptService")
.getResponsefromChatGpt(ctx);
ctx.send(data);
},
async createImage(ctx) {
const data = await strapi
.plugin("strapi-supergpt")
.service("superGptService")
.getImageResponsefromChatGpt(ctx);
ctx.send(data);
},
async createAudio(ctx) {
const data = await strapi
.plugin("strapi-supergpt")
.service("superGptService")
.getAudioFromText(ctx);
ctx.send(data);
},
});