@thirdrocktechno/strapi-gpt
Version:
A StrapiGPT plugin for integrating AI-powered custom ChatBot with your strapi content.
18 lines (16 loc) • 354 B
JavaScript
import { request } from '@strapi/helper-plugin';
const settings = {
get: async () => {
const data = await request(`/strapi-gpt/settings`, {
method: 'GET',
});
return data;
},
set: async (data) => {
return await request(`/strapi-gpt/settings`, {
method: 'POST',
body: data,
});
}
};
export default settings;