mirror of
https://github.com/danny-avila/LibreChat.git
synced 2025-12-16 16:30:15 +01:00
* adding youtube tool * refactor: use short `url` param instead of `videoUrl` * refactor: move API key retrieval to a separate credentials module * refactor: remove unnecessary `isEdited` message property * refactor: remove unnecessary `isEdited` message property pt. 2 * refactor: YouTube Tool with new `tool()` generator, handle tools already created by new `tool` generator * fix: only reset request data for multi-convo messages * refactor: enhance YouTube tool by adding transcript parsing and returning structured JSON responses * refactor: update transcript parsing to handle raw response and clean up text output * feat: support toolkits and refactor YouTube tool as a toolkit for better LLM usage * refactor: remove unused OpenAPI specs and streamline tools transformation in loadAsyncEndpoints * refactor: implement manifestToolMap for better tool management and streamline authentication handling * feat: support toolkits for assistants * refactor: rename loadedTools to toolDefinitions for clarity in PluginController and assistant controllers * feat: complete support of toolkits for assistants --------- Co-authored-by: Danilo Pejakovic <danilo.pejakovic@leoninestudios.com>
156 lines
3.2 KiB
JavaScript
156 lines
3.2 KiB
JavaScript
const mongoose = require('mongoose');
|
|
const mongoMeili = require('~/models/plugins/mongoMeili');
|
|
const messageSchema = mongoose.Schema(
|
|
{
|
|
messageId: {
|
|
type: String,
|
|
unique: true,
|
|
required: true,
|
|
index: true,
|
|
meiliIndex: true,
|
|
},
|
|
conversationId: {
|
|
type: String,
|
|
index: true,
|
|
required: true,
|
|
meiliIndex: true,
|
|
},
|
|
user: {
|
|
type: String,
|
|
index: true,
|
|
required: true,
|
|
default: null,
|
|
},
|
|
model: {
|
|
type: String,
|
|
default: null,
|
|
},
|
|
endpoint: {
|
|
type: String,
|
|
},
|
|
conversationSignature: {
|
|
type: String,
|
|
},
|
|
clientId: {
|
|
type: String,
|
|
},
|
|
invocationId: {
|
|
type: Number,
|
|
},
|
|
parentMessageId: {
|
|
type: String,
|
|
},
|
|
tokenCount: {
|
|
type: Number,
|
|
},
|
|
summaryTokenCount: {
|
|
type: Number,
|
|
},
|
|
sender: {
|
|
type: String,
|
|
meiliIndex: true,
|
|
},
|
|
text: {
|
|
type: String,
|
|
meiliIndex: true,
|
|
},
|
|
summary: {
|
|
type: String,
|
|
},
|
|
isCreatedByUser: {
|
|
type: Boolean,
|
|
required: true,
|
|
default: false,
|
|
},
|
|
unfinished: {
|
|
type: Boolean,
|
|
default: false,
|
|
},
|
|
error: {
|
|
type: Boolean,
|
|
default: false,
|
|
},
|
|
finish_reason: {
|
|
type: String,
|
|
},
|
|
_meiliIndex: {
|
|
type: Boolean,
|
|
required: false,
|
|
select: false,
|
|
default: false,
|
|
},
|
|
files: { type: [{ type: mongoose.Schema.Types.Mixed }], default: undefined },
|
|
plugin: {
|
|
type: {
|
|
latest: {
|
|
type: String,
|
|
required: false,
|
|
},
|
|
inputs: {
|
|
type: [mongoose.Schema.Types.Mixed],
|
|
required: false,
|
|
default: undefined,
|
|
},
|
|
outputs: {
|
|
type: String,
|
|
required: false,
|
|
},
|
|
},
|
|
default: undefined,
|
|
},
|
|
plugins: { type: [{ type: mongoose.Schema.Types.Mixed }], default: undefined },
|
|
content: {
|
|
type: [{ type: mongoose.Schema.Types.Mixed }],
|
|
default: undefined,
|
|
meiliIndex: true,
|
|
},
|
|
thread_id: {
|
|
type: String,
|
|
},
|
|
/* frontend components */
|
|
iconURL: {
|
|
type: String,
|
|
},
|
|
attachments: { type: [{ type: mongoose.Schema.Types.Mixed }], default: undefined },
|
|
/*
|
|
attachments: {
|
|
type: [
|
|
{
|
|
file_id: String,
|
|
filename: String,
|
|
filepath: String,
|
|
expiresAt: Date,
|
|
width: Number,
|
|
height: Number,
|
|
type: String,
|
|
conversationId: String,
|
|
messageId: {
|
|
type: String,
|
|
required: true,
|
|
},
|
|
toolCallId: String,
|
|
},
|
|
],
|
|
default: undefined,
|
|
},
|
|
*/
|
|
},
|
|
{ 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 });
|
|
messageSchema.index({ messageId: 1, user: 1 }, { unique: true });
|
|
|
|
/** @type {mongoose.Model<TMessage>} */
|
|
const Message = mongoose.models.Message || mongoose.model('Message', messageSchema);
|
|
|
|
module.exports = Message;
|