ignore: add error log for title gen failures

This commit is contained in:
rekram1-node 2025-08-29 10:50:52 -05:00
parent 1a5b456bb6
commit 1e47bcea86

View file

@ -742,7 +742,9 @@ export namespace Session {
draft.title = title.trim()
})
})
.catch(() => {})
.catch((error) => {
log.error("failed to generate title", { error, model: small.info.id })
})
}
const agent = await Agent.get(inputAgent)