adhdev 0.8.95 → 0.8.96
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/dist/cli/index.js +3 -3
- package/dist/cli/index.js.map +1 -1
- package/dist/index.js +3 -3
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/cli/index.js
CHANGED
|
@@ -15124,7 +15124,7 @@ ${effect.notification.body || ""}`.trim();
|
|
|
15124
15124
|
const rebuilt = rebuildHermesSavedHistoryFromCanonicalSession(this.providerSessionId);
|
|
15125
15125
|
if (!rebuilt) return false;
|
|
15126
15126
|
this.lastCanonicalHermesSyncMtimeMs = stat4.mtimeMs;
|
|
15127
|
-
const restoredHistory = readChatHistory(this.type, 0,
|
|
15127
|
+
const restoredHistory = readChatHistory(this.type, 0, Number.MAX_SAFE_INTEGER, this.providerSessionId);
|
|
15128
15128
|
this.lastPersistedHistoryMessages = restoredHistory.messages.map((message) => ({
|
|
15129
15129
|
role: message.role,
|
|
15130
15130
|
content: message.content,
|
|
@@ -15141,7 +15141,7 @@ ${effect.notification.body || ""}`.trim();
|
|
|
15141
15141
|
if (!this.providerSessionId) return;
|
|
15142
15142
|
this.syncCanonicalHermesSavedHistoryIfNeeded();
|
|
15143
15143
|
this.historyWriter.compactHistorySession(this.type, this.providerSessionId);
|
|
15144
|
-
const restoredHistory = readChatHistory(this.type, 0,
|
|
15144
|
+
const restoredHistory = readChatHistory(this.type, 0, Number.MAX_SAFE_INTEGER, this.providerSessionId);
|
|
15145
15145
|
this.historyWriter.seedSessionHistory(
|
|
15146
15146
|
this.type,
|
|
15147
15147
|
restoredHistory.messages,
|
|
@@ -86802,7 +86802,7 @@ var init_adhdev_daemon = __esm({
|
|
|
86802
86802
|
init_version();
|
|
86803
86803
|
init_src();
|
|
86804
86804
|
init_runtime_defaults();
|
|
86805
|
-
pkgVersion = resolvePackageVersion({ injectedVersion: "0.8.
|
|
86805
|
+
pkgVersion = resolvePackageVersion({ injectedVersion: "0.8.96" });
|
|
86806
86806
|
AdhdevDaemon = class _AdhdevDaemon {
|
|
86807
86807
|
localHttpServer = null;
|
|
86808
86808
|
localWss = null;
|