mirror of
https://github.com/danny-avila/LibreChat.git
synced 2025-09-22 06:00:56 +02:00

* feat: add zod schemas for better type safety * refactor(useSetOptions): remove 'as Type' in favor of zod schema * fix: descendant console error, change <p> tag to <div> tag for content in PluginTooltip component * style(MessagesView): instant/snappier scroll behavior matching official site * fix(Messages): add null check for scrollableRef before accessing its properties in handleScroll and useEffect * fix(messageSchema.js): change type of invocationId from string to number fix(schemas.ts): make authenticated property in tPluginSchema optional fix(schemas.ts): make isButton property in tPluginSchema optional fix(schemas.ts): make messages property in tConversationSchema optional and change its type to array of strings fix(schemas.ts): make systemMessage property in tConversationSchema nullable and optional fix(schemas.ts): make modelLabel property in tConversationSchema nullable and optional fix(schemas.ts): make chatGptLabel property in tConversationSchema nullable and optional fix(schemas.ts): make promptPrefix property in tConversationSchema nullable and optional fix(schemas.ts): make context property in tConversationSchema nullable and optional fix(schemas.ts): make jailbreakConversationId property in tConversationSchema nullable and optional fix(schemas.ts): make conversationSignature property in tConversationSchema nullable and optional fix(schemas.ts): make clientId property * refactor(types): replace main types with zod schemas and inferred types * refactor(types/schemas): use schemas for better type safety of main types * style(ModelSelect/Buttons): remove shadow and transition * style(ModelSelect): button changes to closer match OpenAI * style(ModelSelect): remove green rings which flicker * style(scrollToBottom): add two separate scrolling functions * fix(OptionsBar.tsx): handle onFocus and onBlur events to update opacityClass fix(Messages/index.jsx): increase debounce time for scrollIntoView function
107 lines
2 KiB
JavaScript
107 lines
2 KiB
JavaScript
const mongoose = require('mongoose');
|
|
const mongoMeili = require('../plugins/mongoMeili');
|
|
const messageSchema = mongoose.Schema(
|
|
{
|
|
messageId: {
|
|
type: String,
|
|
unique: true,
|
|
required: true,
|
|
index: true,
|
|
meiliIndex: true,
|
|
},
|
|
conversationId: {
|
|
type: String,
|
|
required: true,
|
|
meiliIndex: true,
|
|
},
|
|
model: {
|
|
type: String,
|
|
},
|
|
conversationSignature: {
|
|
type: String,
|
|
// required: true
|
|
},
|
|
clientId: {
|
|
type: String,
|
|
},
|
|
invocationId: {
|
|
type: Number,
|
|
},
|
|
parentMessageId: {
|
|
type: String,
|
|
// required: true
|
|
},
|
|
tokenCount: {
|
|
type: Number,
|
|
},
|
|
refinedTokenCount: {
|
|
type: Number,
|
|
},
|
|
sender: {
|
|
type: String,
|
|
required: true,
|
|
meiliIndex: true,
|
|
},
|
|
text: {
|
|
type: String,
|
|
required: true,
|
|
meiliIndex: true,
|
|
},
|
|
refinedMessageText: {
|
|
type: String,
|
|
},
|
|
isCreatedByUser: {
|
|
type: Boolean,
|
|
required: true,
|
|
default: false,
|
|
},
|
|
unfinished: {
|
|
type: Boolean,
|
|
default: false,
|
|
},
|
|
cancelled: {
|
|
type: Boolean,
|
|
default: false,
|
|
},
|
|
error: {
|
|
type: Boolean,
|
|
default: false,
|
|
},
|
|
_meiliIndex: {
|
|
type: Boolean,
|
|
required: false,
|
|
select: false,
|
|
default: false,
|
|
},
|
|
plugin: {
|
|
latest: {
|
|
type: String,
|
|
required: false,
|
|
},
|
|
inputs: {
|
|
type: [mongoose.Schema.Types.Mixed],
|
|
required: false,
|
|
},
|
|
outputs: {
|
|
type: String,
|
|
required: false,
|
|
},
|
|
},
|
|
},
|
|
{ timestamps: true },
|
|
);
|
|
|
|
if (process.env.MEILI_HOST && process.env.MEILI_MASTER_KEY) {
|
|
messageSchema.plugin(mongoMeili, {
|
|
host: process.env.MEILI_HOST,
|
|
apiKey: process.env.MEILI_MASTER_KEY,
|
|
indexName: 'messages',
|
|
primaryKey: 'messageId',
|
|
});
|
|
}
|
|
|
|
messageSchema.index({ createdAt: 1 });
|
|
|
|
const Message = mongoose.models.Message || mongoose.model('Message', messageSchema);
|
|
|
|
module.exports = Message;
|