mirror of
https://github.com/danny-avila/LibreChat.git
synced 2025-12-17 17:00:15 +01:00
* Feature: Added ability to send current date and time to v1 and v2 assistants * remove date_feature.patch * fix: rename append_today_date to append_current_datetime * feat: Refactor time handling in chatV1 and chatV2, add date and time utility functions * fix: Add warning log and response for missing run values in abortRun middleware --------- Co-authored-by: Max Sanna <max@maxsanna.com>
41 lines
782 B
JavaScript
41 lines
782 B
JavaScript
const mongoose = require('mongoose');
|
|
|
|
const assistantSchema = mongoose.Schema(
|
|
{
|
|
user: {
|
|
type: mongoose.Schema.Types.ObjectId,
|
|
ref: 'User',
|
|
required: true,
|
|
},
|
|
assistant_id: {
|
|
type: String,
|
|
index: true,
|
|
required: true,
|
|
},
|
|
avatar: {
|
|
type: {
|
|
filepath: String,
|
|
source: String,
|
|
},
|
|
default: undefined,
|
|
},
|
|
conversation_starters: {
|
|
type: [String],
|
|
default: [],
|
|
},
|
|
access_level: {
|
|
type: Number,
|
|
},
|
|
file_ids: { type: [String], default: undefined },
|
|
actions: { type: [String], default: undefined },
|
|
append_current_datetime: {
|
|
type: Boolean,
|
|
default: false,
|
|
},
|
|
},
|
|
{
|
|
timestamps: true,
|
|
},
|
|
);
|
|
|
|
module.exports = assistantSchema;
|