open-agents-ai 0.187.30 → 0.187.31
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 +11 -2
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -291338,8 +291338,8 @@ function getDatabase() {
|
|
|
291338
291338
|
return _Database;
|
|
291339
291339
|
}
|
|
291340
291340
|
function initDb(dbPath) {
|
|
291341
|
-
const
|
|
291342
|
-
const db = new
|
|
291341
|
+
const Database2 = getDatabase();
|
|
291342
|
+
const db = new Database2(dbPath);
|
|
291343
291343
|
db.pragma("journal_mode = WAL");
|
|
291344
291344
|
db.pragma("foreign_keys = ON");
|
|
291345
291345
|
runMigrations(db);
|
|
@@ -312303,6 +312303,14 @@ var init_ollamaEmbeddings = __esm({
|
|
|
312303
312303
|
}
|
|
312304
312304
|
});
|
|
312305
312305
|
|
|
312306
|
+
// packages/indexer/dist/code-graph-db.js
|
|
312307
|
+
import Database from "better-sqlite3";
|
|
312308
|
+
var init_code_graph_db = __esm({
|
|
312309
|
+
"packages/indexer/dist/code-graph-db.js"() {
|
|
312310
|
+
"use strict";
|
|
312311
|
+
}
|
|
312312
|
+
});
|
|
312313
|
+
|
|
312306
312314
|
// packages/indexer/dist/index.js
|
|
312307
312315
|
var init_dist10 = __esm({
|
|
312308
312316
|
"packages/indexer/dist/index.js"() {
|
|
@@ -312314,6 +312322,7 @@ var init_dist10 = __esm({
|
|
|
312314
312322
|
init_fileSummarizer();
|
|
312315
312323
|
init_embeddings2();
|
|
312316
312324
|
init_ollamaEmbeddings();
|
|
312325
|
+
init_code_graph_db();
|
|
312317
312326
|
}
|
|
312318
312327
|
});
|
|
312319
312328
|
|
package/package.json
CHANGED