mirror of
https://github.com/wassname/chatGPTBox.git
synced 2026-07-16 11:18:17 +08:00
chore: add createdAt and updatedAt to session
This commit is contained in:
@@ -51,6 +51,7 @@ export const getSession = async (sessionId) => {
|
||||
}
|
||||
|
||||
export const updateSession = async (newSession) => {
|
||||
newSession.updatedAt = new Date().toISOString()
|
||||
const currentSessions = await getSessions()
|
||||
currentSessions[
|
||||
currentSessions.findIndex((session) => session.sessionId === newSession.sessionId)
|
||||
|
||||
@@ -7,6 +7,8 @@ import { v4 as uuidv4 } from 'uuid'
|
||||
* @property {Object[]|null} conversationRecords
|
||||
* @property {string|null} sessionName
|
||||
* @property {string|null} sessionId
|
||||
* @property {string|null} createdAt
|
||||
* @property {string|null} updatedAt
|
||||
* @property {string|null} aiName
|
||||
* @property {string|null} modelName
|
||||
* @property {boolean|null} autoClean
|
||||
@@ -45,6 +47,8 @@ export function initSession({
|
||||
|
||||
sessionName,
|
||||
sessionId: uuidv4(),
|
||||
createdAt: new Date().toISOString(),
|
||||
updatedAt: new Date().toISOString(),
|
||||
|
||||
aiName: modelName ? Models[modelName].desc : null,
|
||||
modelName,
|
||||
|
||||
Reference in New Issue
Block a user