LibreChat/api/models/index.js

16 lines
406 B
JavaScript
Raw Normal View History

2023-02-25 09:04:32 -05:00
const { saveMessage, deleteMessages } = require('./Message');
const { getCustomGpts, updateCustomGpt, updateByLabel, deleteCustomGpts } = require('./CustomGpt');
const { getConvoTitle, getConvo, saveConvo } = require('./Conversation');
2023-02-25 09:04:32 -05:00
module.exports = {
saveMessage,
deleteMessages,
getConvoTitle,
getConvo,
2023-02-25 09:04:32 -05:00
saveConvo,
getCustomGpts,
updateCustomGpt,
updateByLabel,
deleteCustomGpts
};