@signetai/connector-hermes-agent 0.176.2 → 0.176.4
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 +24 -2
- package/package.json +3 -3
package/dist/index.js
CHANGED
|
@@ -10383,6 +10383,12 @@ function up109(db) {
|
|
|
10383
10383
|
);
|
|
10384
10384
|
`);
|
|
10385
10385
|
}
|
|
10386
|
+
function up110(db) {
|
|
10387
|
+
db.exec(`
|
|
10388
|
+
CREATE INDEX IF NOT EXISTS idx_memory_entity_mentions_entity_memory
|
|
10389
|
+
ON memory_entity_mentions(entity_id, memory_id);
|
|
10390
|
+
`);
|
|
10391
|
+
}
|
|
10386
10392
|
var MIGRATIONS = [
|
|
10387
10393
|
{
|
|
10388
10394
|
version: 1,
|
|
@@ -11253,6 +11259,11 @@ var MIGRATIONS = [
|
|
|
11253
11259
|
artifacts: {
|
|
11254
11260
|
tables: ["telemetry_install"]
|
|
11255
11261
|
}
|
|
11262
|
+
},
|
|
11263
|
+
{
|
|
11264
|
+
version: 110,
|
|
11265
|
+
name: "memory-mention-join-index",
|
|
11266
|
+
up: up110
|
|
11256
11267
|
}
|
|
11257
11268
|
];
|
|
11258
11269
|
var LATEST_SCHEMA_VERSION = MIGRATIONS[MIGRATIONS.length - 1]?.version ?? 0;
|
|
@@ -18517,7 +18528,7 @@ function memoriesFtsNeedsTokenizerRepair2(sql) {
|
|
|
18517
18528
|
return true;
|
|
18518
18529
|
return !normalized.includes(`tokenize='${MEMORIES_FTS_TOKENIZER2}'`);
|
|
18519
18530
|
}
|
|
18520
|
-
function
|
|
18531
|
+
function up111(db) {
|
|
18521
18532
|
db.exec(`
|
|
18522
18533
|
CREATE TABLE IF NOT EXISTS schema_migrations (
|
|
18523
18534
|
version INTEGER PRIMARY KEY,
|
|
@@ -21934,11 +21945,17 @@ function up1092(db) {
|
|
|
21934
21945
|
);
|
|
21935
21946
|
`);
|
|
21936
21947
|
}
|
|
21948
|
+
function up1102(db) {
|
|
21949
|
+
db.exec(`
|
|
21950
|
+
CREATE INDEX IF NOT EXISTS idx_memory_entity_mentions_entity_memory
|
|
21951
|
+
ON memory_entity_mentions(entity_id, memory_id);
|
|
21952
|
+
`);
|
|
21953
|
+
}
|
|
21937
21954
|
var MIGRATIONS2 = [
|
|
21938
21955
|
{
|
|
21939
21956
|
version: 1,
|
|
21940
21957
|
name: "baseline",
|
|
21941
|
-
up:
|
|
21958
|
+
up: up111,
|
|
21942
21959
|
artifacts: { tables: ["memories", "conversations", "embeddings"] }
|
|
21943
21960
|
},
|
|
21944
21961
|
{
|
|
@@ -22804,6 +22821,11 @@ var MIGRATIONS2 = [
|
|
|
22804
22821
|
artifacts: {
|
|
22805
22822
|
tables: ["telemetry_install"]
|
|
22806
22823
|
}
|
|
22824
|
+
},
|
|
22825
|
+
{
|
|
22826
|
+
version: 110,
|
|
22827
|
+
name: "memory-mention-join-index",
|
|
22828
|
+
up: up1102
|
|
22807
22829
|
}
|
|
22808
22830
|
];
|
|
22809
22831
|
var LATEST_SCHEMA_VERSION2 = MIGRATIONS2[MIGRATIONS2.length - 1]?.version ?? 0;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@signetai/connector-hermes-agent",
|
|
3
|
-
"version": "0.176.
|
|
3
|
+
"version": "0.176.4",
|
|
4
4
|
"description": "Signet connector for Hermes Agent — installs Signet as a pluggable memory provider",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -25,8 +25,8 @@
|
|
|
25
25
|
"typecheck": "tsc --noEmit"
|
|
26
26
|
},
|
|
27
27
|
"dependencies": {
|
|
28
|
-
"@signetai/connector-base": "0.176.
|
|
29
|
-
"@signetai/core": "0.176.
|
|
28
|
+
"@signetai/connector-base": "0.176.4",
|
|
29
|
+
"@signetai/core": "0.176.4"
|
|
30
30
|
},
|
|
31
31
|
"devDependencies": {
|
|
32
32
|
"@types/node": "^22.0.0",
|