mirror of
https://github.com/ikechan8370/chatgpt-plugin.git
synced 2025-12-16 13:27:08 +00:00
fix: memory show update time
This commit is contained in:
parent
82de8308b3
commit
ffb68245ac
1 changed files with 2 additions and 2 deletions
|
|
@ -92,7 +92,7 @@ export class MemoryManager extends plugin {
|
|||
}
|
||||
|
||||
const msgs = memories.map(item =>
|
||||
`${item.id}. ${item.value}(重要度 ${item.importance.toFixed(2)})`
|
||||
`${item.id}. ${item.value}(更新时间:${item.updated_at})`
|
||||
)
|
||||
|
||||
const forwardMsg = await common.makeForwardMsg(e, ['🧠 您的记忆:', ...msgs], '私人记忆列表')
|
||||
|
|
@ -125,7 +125,7 @@ export class MemoryManager extends plugin {
|
|||
}
|
||||
|
||||
const msgs = memories.map(item =>
|
||||
`${item.id}. ${item.value}(重要度 ${item.importance.toFixed(2)})`
|
||||
`${item.id}. ${item.value}(更新时间:${item.updated_at})`
|
||||
)
|
||||
|
||||
const forwardMsg = await common.makeForwardMsg(e, ['🧠 TA的记忆:', ...msgs], 'TA的记忆列表')
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue