obol-ai 0.3.45 → 0.3.46

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "obol-ai",
3
- "version": "0.3.45",
3
+ "version": "0.3.46",
4
4
  "description": "Self-evolving AI assistant that learns, remembers, and acts on its own. Persistent vector memory, self-rewriting personality, proactive heartbeats.",
5
5
  "main": "src/index.js",
6
6
  "bin": {
@@ -354,6 +354,11 @@ async function runAgenticEvent(bot, config, event) {
354
354
  await bot.api.sendMessage(event.chat_id, text).catch(() =>
355
355
  bot.api.sendMessage(event.chat_id, text, { parse_mode: undefined })
356
356
  );
357
+
358
+ tenant.claude.injectHistory(event.chat_id, 'assistant', text);
359
+ if (tenant.messageLog) {
360
+ await tenant.messageLog.log(event.chat_id, 'assistant', text, { model: 'claude-sonnet-4-6' }).catch(() => {});
361
+ }
357
362
  }
358
363
 
359
364
  module.exports = { setupHeartbeat };