mirror of
https://github.com/danny-avila/LibreChat.git
synced 2025-12-18 17:30:16 +01:00
* ci(backend-review.yml): add linter step to the backend review workflow * chore(backend-review.yml): remove prettier from lint-action configuration * chore: apply new linting workflow * chore(lint-staged.config.js): reorder lint-staged tasks for JavaScript and TypeScript files * chore(eslint): update ignorePatterns in .eslintrc.js chore(lint-action): remove prettier option in backend-review.yml chore(package.json): add lint and lint:fix scripts * chore(lint-staged.config.js): remove prettier --write command for js, jsx, ts, tsx files * chore(titleConvo.js): remove unnecessary console.log statement chore(titleConvo.js): add missing comma in options object * chore: apply linting to all files * chore(lint-staged.config.js): update lint-staged configuration to include prettier formatting
118 lines
3.5 KiB
JavaScript
118 lines
3.5 KiB
JavaScript
const mongoose = require('mongoose');
|
|
const { Conversation } = require('../../models/Conversation');
|
|
const { getMessages } = require('../../models/');
|
|
|
|
const migrateToStrictFollowParentMessageIdChain = async () => {
|
|
try {
|
|
const conversations = await Conversation.find({ endpoint: null, model: null }).exec();
|
|
|
|
if (!conversations || conversations.length === 0) return { noNeed: true };
|
|
|
|
console.log('Migration: To strict follow the parentMessageId chain.');
|
|
|
|
for (let convo of conversations) {
|
|
const messages = await getMessages({
|
|
conversationId: convo.conversationId,
|
|
messageId: { $exists: false },
|
|
});
|
|
|
|
let model;
|
|
let oldId;
|
|
const promises = [];
|
|
messages.forEach((message, i) => {
|
|
const msgObj = message.toObject();
|
|
const newId = msgObj.id;
|
|
if (i === 0) {
|
|
message.parentMessageId = '00000000-0000-0000-0000-000000000000';
|
|
} else {
|
|
message.parentMessageId = oldId;
|
|
}
|
|
|
|
oldId = newId;
|
|
message.messageId = newId;
|
|
if (message.sender.toLowerCase() !== 'user' && !model) {
|
|
model = message.sender.toLowerCase();
|
|
}
|
|
|
|
if (message.sender.toLowerCase() === 'user') {
|
|
message.isCreatedByUser = true;
|
|
}
|
|
|
|
promises.push(message.save());
|
|
});
|
|
await Promise.all(promises);
|
|
|
|
await Conversation.findOneAndUpdate(
|
|
{ conversationId: convo.conversationId },
|
|
{ model },
|
|
{ new: true },
|
|
).exec();
|
|
}
|
|
|
|
try {
|
|
await mongoose.connection.db.collection('messages').dropIndex('id_1');
|
|
} catch (error) {
|
|
console.log('[Migrate] Index doesn\'t exist or already dropped');
|
|
}
|
|
} catch (error) {
|
|
console.log(error);
|
|
return { message: '[Migrate] Error migrating conversations' };
|
|
}
|
|
};
|
|
|
|
const migrateToSupportBetterCustomization = async () => {
|
|
try {
|
|
const conversations = await Conversation.find({ endpoint: null }).exec();
|
|
|
|
if (!conversations || conversations.length === 0) return { noNeed: true };
|
|
|
|
console.log('Migration: To support better customization.');
|
|
|
|
const promises = [];
|
|
for (let convo of conversations) {
|
|
const originalModel = convo?.model;
|
|
|
|
if (originalModel === 'chatgpt') {
|
|
convo.endpoint = 'openAI';
|
|
convo.model = 'gpt-3.5-turbo';
|
|
} else if (originalModel === 'chatgptCustom') {
|
|
convo.endpoint = 'openAI';
|
|
convo.model = 'gpt-3.5-turbo';
|
|
} else if (originalModel === 'bingai') {
|
|
convo.endpoint = 'bingAI';
|
|
convo.model = null;
|
|
convo.jailbreak = false;
|
|
} else if (originalModel === 'sydney') {
|
|
convo.endpoint = 'bingAI';
|
|
convo.model = null;
|
|
convo.jailbreak = true;
|
|
} else if (originalModel === 'chatgptBrowser') {
|
|
convo.endpoint = 'chatGPTBrowser';
|
|
convo.model = 'text-davinci-002-render-sha';
|
|
convo.jailbreak = true;
|
|
} else {
|
|
convo.endpoint = 'openAI';
|
|
convo.model = 'gpt-3.5-turbo';
|
|
}
|
|
|
|
promises.push(convo.save());
|
|
}
|
|
|
|
await Promise.all(promises);
|
|
} catch (error) {
|
|
console.log(error);
|
|
return { message: '[Migrate] Error migrating conversations' };
|
|
}
|
|
};
|
|
|
|
async function migrateDb() {
|
|
let ret = [];
|
|
ret[0] = await migrateToStrictFollowParentMessageIdChain();
|
|
ret[1] = await migrateToSupportBetterCustomization();
|
|
|
|
const isMigrated = !!ret.find((element) => !element?.noNeed);
|
|
|
|
if (!isMigrated) console.log('[Migrate] Nothing to migrate');
|
|
}
|
|
|
|
module.exports = migrateDb;
|