UNPKG

strapi-supergpt

Version:

A plugin that gives you the ability to integrate ChatGPT into strapi

19 lines (17 loc) 395 B
"use strict"; module.exports = ({ strapi }) => ({ async updateConfig(ctx) { const data = await strapi .plugin("strapi-supergpt") .service("cacheService") .updateConfig(ctx); ctx.send(data); }, async getConfig(ctx) { const data = await strapi .plugin("strapi-supergpt") .service("cacheService") .getConfig(ctx); ctx.send(data); }, });