open-agents-ai 0.187.156 → 0.187.158
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/index.js +10 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -301019,6 +301019,14 @@ var init_toolPatternStore = __esm({
|
|
|
301019
301019
|
}
|
|
301020
301020
|
});
|
|
301021
301021
|
|
|
301022
|
+
// packages/memory/dist/episodeStore.js
|
|
301023
|
+
var init_episodeStore = __esm({
|
|
301024
|
+
"packages/memory/dist/episodeStore.js"() {
|
|
301025
|
+
"use strict";
|
|
301026
|
+
init_db();
|
|
301027
|
+
}
|
|
301028
|
+
});
|
|
301029
|
+
|
|
301022
301030
|
// packages/memory/dist/embeddings.js
|
|
301023
301031
|
var init_embeddings = __esm({
|
|
301024
301032
|
"packages/memory/dist/embeddings.js"() {
|
|
@@ -301046,6 +301054,7 @@ var init_dist9 = __esm({
|
|
|
301046
301054
|
init_failureStore();
|
|
301047
301055
|
init_validationStore();
|
|
301048
301056
|
init_toolPatternStore();
|
|
301057
|
+
init_episodeStore();
|
|
301049
301058
|
init_embeddings();
|
|
301050
301059
|
init_proceduralMemoryStore();
|
|
301051
301060
|
}
|
|
@@ -302286,7 +302295,7 @@ var init_stream_renderer = __esm({
|
|
|
302286
302295
|
this.writeRaw(dimText(" \u23BF ") + dimItalic("thinking...") + "\n");
|
|
302287
302296
|
this.lineStarted = false;
|
|
302288
302297
|
}
|
|
302289
|
-
if (this.thinkingTokenCount %
|
|
302298
|
+
if (this.thinkingTokenCount % 500 === 0) {
|
|
302290
302299
|
this.writeRaw(dimText(" \u23BF ") + dimItalic(`thinking... (${this.thinkingTokenCount} tokens)`) + "\n");
|
|
302291
302300
|
this.lineStarted = false;
|
|
302292
302301
|
}
|
package/package.json
CHANGED