UNPKG

@thirdrocktechno/strapi-gpt

Version:

A StrapiGPT plugin for integrating AI-powered custom ChatBot with your strapi content.

22 lines (21 loc) 370 B
module.exports = { type: 'admin', routes: [ { method: 'POST', path: '/history', handler: 'conversations.getUserHistory', config: { auth: false, }, }, { method: 'POST', path: '/add-conversation', handler: 'conversations.addConversation', config: { auth: false, }, }, ], };