agentdb 1.3.5 → 1.3.6
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/agentdb.min.js +9 -4
- package/package.json +1 -1
package/dist/agentdb.min.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/*! AgentDB Browser Bundle v1.3.
|
|
1
|
+
/*! AgentDB Browser Bundle v1.3.6 | MIT License | https://agentdb.ruv.io */
|
|
2
2
|
/*! Backward compatible with v1.0.7 API | Uses sql.js WASM SQLite */
|
|
3
3
|
|
|
4
4
|
// We are modularizing this manually because the current modularize setting in Emscripten has some issues:
|
|
@@ -193,7 +193,7 @@ else if (typeof exports === 'object'){
|
|
|
193
193
|
;(function(global) {
|
|
194
194
|
'use strict';
|
|
195
195
|
|
|
196
|
-
// AgentDB v1.3.
|
|
196
|
+
// AgentDB v1.3.6 - v1.0.7 Compatible Browser Bundle
|
|
197
197
|
|
|
198
198
|
var sqlReady = false;
|
|
199
199
|
var SQL = null;
|
|
@@ -265,6 +265,11 @@ else if (typeof exports === 'object'){
|
|
|
265
265
|
db.close();
|
|
266
266
|
};
|
|
267
267
|
|
|
268
|
+
// Async initialization support (for newer demos)
|
|
269
|
+
this.initializeAsync = function() {
|
|
270
|
+
return Promise.resolve(this);
|
|
271
|
+
};
|
|
272
|
+
|
|
268
273
|
// Initialize with basic schema if new database
|
|
269
274
|
if (!data) {
|
|
270
275
|
this.run(`
|
|
@@ -292,7 +297,7 @@ else if (typeof exports === 'object'){
|
|
|
292
297
|
|
|
293
298
|
// Create AgentDB namespace with all exports
|
|
294
299
|
var AgentDB = {
|
|
295
|
-
version: '1.3.
|
|
300
|
+
version: '1.3.6',
|
|
296
301
|
Database: Database,
|
|
297
302
|
ready: false,
|
|
298
303
|
|
|
@@ -330,6 +335,6 @@ else if (typeof exports === 'object'){
|
|
|
330
335
|
global.SQLiteVectorDB = Database;
|
|
331
336
|
}
|
|
332
337
|
|
|
333
|
-
console.log('AgentDB v1.3.
|
|
338
|
+
console.log('AgentDB v1.3.6 loaded (v1.0.7 API compatible)');
|
|
334
339
|
|
|
335
340
|
})(typeof window !== 'undefined' ? window : this);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "agentdb",
|
|
3
|
-
"version": "1.3.
|
|
3
|
+
"version": "1.3.6",
|
|
4
4
|
"description": "AgentDB - Frontier Memory Features with MCP Integration: Causal reasoning, reflexion memory, skill library, and automated learning. 150x faster vector search. Full Claude Desktop support via Model Context Protocol.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|