strapi-supergpt
Version:
A plugin that gives you the ability to integrate ChatGPT into strapi
31 lines (29 loc) • 546 B
JavaScript
;
module.exports = {
routes: [
{
method: "POST",
path: "/prompt",
handler: "chatGptController.prompt",
config: {
policies: [],
},
},
{
method: "POST",
path: "/generateImage",
handler: "chatGptController.createImage",
config: {
policies: [],
},
},
// {
// method: "POST",
// path: "/generateAudio",
// handler: "chatGptController.createAudio",
// config: {
// policies: [],
// },
// },
],
};