fix prompter

This commit is contained in:
Isadora White 2025-03-14 18:20:33 -07:00
parent 8c78398056
commit 2dea51f2d1

View file

@ -430,7 +430,8 @@ export class Prompter {
async promptMemSaving(to_summarize) {
await this.checkCooldown();
let prompt = await this.replaceStrings(prompt, null, null, to_summarize);
let prompt = this.profile.saving_memory;
prompt = await this.replaceStrings(prompt, null, null, to_summarize);
let logEntry;
const timestamp = new Date().toISOString().replace(/[:.]/g, '-');
if (this.task_id === null) {