@gitsense/gscb-git-tools 0.4.7 → 0.4.8
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/cjs/importer/chat-manager/message-manager.js +24 -7
- package/dist/cjs/importer/chat-manager/message-manager.js.map +1 -1
- package/dist/cjs/index.js +1 -0
- package/dist/cjs/index.js.map +1 -1
- package/dist/esm/importer/chat-manager/message-manager.js +20 -7
- package/dist/esm/importer/chat-manager/message-manager.js.map +1 -1
- package/dist/esm/index.js +1 -0
- package/dist/esm/index.js.map +1 -1
- package/package.json +2 -2
|
@@ -1,17 +1,22 @@
|
|
|
1
1
|
'use strict';
|
|
2
2
|
|
|
3
|
+
var crypto = require('crypto');
|
|
3
4
|
var constants = require('./constants.js');
|
|
4
5
|
|
|
6
|
+
function _interopDefault (e) { return e && e.__esModule ? e : { default: e }; }
|
|
7
|
+
|
|
8
|
+
var crypto__default = /*#__PURE__*/_interopDefault(crypto);
|
|
9
|
+
|
|
5
10
|
/**
|
|
6
11
|
* Component: Message Manager
|
|
7
|
-
* Block-UUID:
|
|
8
|
-
* Parent-UUID:
|
|
9
|
-
* Version: 1.
|
|
10
|
-
* Purpose: Handles message creation, retrieval, and updates, including markdown table generation
|
|
12
|
+
* Block-UUID: 3bb80822-8ce7-4158-98b2-acf5996241b8
|
|
13
|
+
* Parent-UUID: 1f0d0090-1be3-466a-8576-cc860c1eb397
|
|
14
|
+
* Version: 1.2.0
|
|
15
|
+
* Purpose: Handles message creation, retrieval, and updates, including markdown table generation and hash generation
|
|
11
16
|
* Language: TypeScript
|
|
12
17
|
* Created-at: 2025-03-15T02:07:30.618Z
|
|
13
18
|
* Updated-at: 2025-03-16T02:16:32.958Z
|
|
14
|
-
* Authors: together.ai - DeepSeek v3 (v1.0.0), OpenRouter - DeepSeek v3 (v1.1.0)
|
|
19
|
+
* Authors: together.ai - DeepSeek v3 (v1.0.0), OpenRouter - DeepSeek v3 (v1.1.0), GLM-4.7 (v1.2.0)
|
|
15
20
|
*/
|
|
16
21
|
class MessageManager {
|
|
17
22
|
dbClient;
|
|
@@ -25,6 +30,9 @@ class MessageManager {
|
|
|
25
30
|
*/
|
|
26
31
|
async createSystemMessage(chatId) {
|
|
27
32
|
try {
|
|
33
|
+
const now = new Date().toISOString();
|
|
34
|
+
const messageContent = '';
|
|
35
|
+
const hash = crypto__default.default.createHash('sha256').update(messageContent + now).digest('hex');
|
|
28
36
|
return await this.dbClient.createMessage({
|
|
29
37
|
type: constants.MESSAGE_TYPE_REGULAR,
|
|
30
38
|
visibility: constants.CHAT_VISIBILITY_PUBLIC,
|
|
@@ -33,7 +41,8 @@ class MessageManager {
|
|
|
33
41
|
level: 0,
|
|
34
42
|
role: 'system',
|
|
35
43
|
message: '',
|
|
36
|
-
priority: 0
|
|
44
|
+
priority: 0,
|
|
45
|
+
hash
|
|
37
46
|
});
|
|
38
47
|
}
|
|
39
48
|
catch (error) {
|
|
@@ -47,6 +56,9 @@ class MessageManager {
|
|
|
47
56
|
if (!message) {
|
|
48
57
|
message = '';
|
|
49
58
|
}
|
|
59
|
+
const now = new Date().toISOString();
|
|
60
|
+
const messageContent = message;
|
|
61
|
+
const hash = crypto__default.default.createHash('sha256').update(messageContent + now).digest('hex');
|
|
50
62
|
return await this.dbClient.createMessage({
|
|
51
63
|
type: chatType,
|
|
52
64
|
visibility: constants.CHAT_VISIBILITY_PUBLIC,
|
|
@@ -58,13 +70,17 @@ class MessageManager {
|
|
|
58
70
|
priority: 0,
|
|
59
71
|
sample: 1,
|
|
60
72
|
model: constants.DEFAULT_MODEL,
|
|
61
|
-
temperature: constants.DEFAULT_TEMPERATURE
|
|
73
|
+
temperature: constants.DEFAULT_TEMPERATURE,
|
|
74
|
+
hash
|
|
62
75
|
});
|
|
63
76
|
}
|
|
64
77
|
/**
|
|
65
78
|
* Creates the main message for a chat.
|
|
66
79
|
*/
|
|
67
80
|
async createChatMetaMessage(chatId, parentId) {
|
|
81
|
+
const now = new Date().toISOString();
|
|
82
|
+
const messageContent = '';
|
|
83
|
+
const hash = crypto__default.default.createHash('sha256').update(messageContent + now).digest('hex');
|
|
68
84
|
return await this.dbClient.createMessage({
|
|
69
85
|
type: constants.MESSAGE_TYPE_CHAT_META,
|
|
70
86
|
visibility: constants.CHAT_VISIBILITY_PUBLIC,
|
|
@@ -77,6 +93,7 @@ class MessageManager {
|
|
|
77
93
|
sample: 1,
|
|
78
94
|
model: constants.DEFAULT_MODEL,
|
|
79
95
|
temperature: constants.DEFAULT_TEMPERATURE,
|
|
96
|
+
hash
|
|
80
97
|
});
|
|
81
98
|
}
|
|
82
99
|
/**
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"message-manager.js","sources":["../../../../src/importer/chat-manager/message-manager.ts"],"sourcesContent":[null],"names":["MESSAGE_TYPE_REGULAR","CHAT_VISIBILITY_PUBLIC","DEFAULT_MODEL","DEFAULT_TEMPERATURE","MESSAGE_TYPE_CHAT_META"],"mappings":"
|
|
1
|
+
{"version":3,"file":"message-manager.js","sources":["../../../../src/importer/chat-manager/message-manager.ts"],"sourcesContent":[null],"names":["crypto","MESSAGE_TYPE_REGULAR","CHAT_VISIBILITY_PUBLIC","DEFAULT_MODEL","DEFAULT_TEMPERATURE","MESSAGE_TYPE_CHAT_META"],"mappings":";;;;;;;;;AAAA;;;;;;;;;;AAUG;MASU,cAAc,CAAA;AAEF,IAAA,QAAA;AACA,IAAA,MAAA;IAFrB,WACqB,CAAA,QAAwB,EACxB,MAAc,EAAA;QADd,IAAQ,CAAA,QAAA,GAAR,QAAQ;QACR,IAAM,CAAA,MAAA,GAAN,MAAM;;AAG3B;;AAEG;IACH,MAAM,mBAAmB,CAAC,MAAc,EAAA;AACpC,QAAA,IAAI;YACA,MAAM,GAAG,GAAG,IAAI,IAAI,EAAE,CAAC,WAAW,EAAE;YACpC,MAAM,cAAc,GAAG,EAAE;YACzB,MAAM,IAAI,GAAGA,uBAAM,CAAC,UAAU,CAAC,QAAQ,CAAC,CAAC,MAAM,CAAC,cAAc,GAAG,GAAG,CAAC,CAAC,MAAM,CAAC,KAAK,CAAC;AAEnF,YAAA,OAAO,MAAM,IAAI,CAAC,QAAQ,CAAC,aAAa,CAAC;AACrC,gBAAA,IAAI,EAAEC,8BAAoB;AAC1B,gBAAA,UAAU,EAAEC,gCAAsB;gBAClC,MAAM;AACN,gBAAA,QAAQ,EAAE,CAAC;AACX,gBAAA,KAAK,EAAE,CAAC;AACR,gBAAA,IAAI,EAAE,QAAQ;AACd,gBAAA,OAAO,EAAE,EAAE;AACX,gBAAA,QAAQ,EAAE,CAAC;gBACX;AACH,aAAA,CAAC;;QACJ,OAAO,KAAK,EAAE;YACZ,MAAM,IAAI,KAAK,CAAC,CAA4C,yCAAA,EAAA,MAAM,KAAK,KAAK,YAAY,KAAK,GAAG,KAAK,CAAC,OAAO,GAAG,MAAM,CAAC,KAAK,CAAC,CAAE,CAAA,CAAC;;;AAIxI;;AAEG;IACH,MAAM,iBAAiB,CACnB,MAAc,EACd,QAAgB,EAChB,QAAqB,EACrB,OAAgB,EAAA;QAEhB,IAAI,CAAC,OAAO,EAAE;YACV,OAAO,GAAG,EAAE;;QAGhB,MAAM,GAAG,GAAG,IAAI,IAAI,EAAE,CAAC,WAAW,EAAE;QACpC,MAAM,cAAc,GAAG,OAAO;QAC9B,MAAM,IAAI,GAAGF,uBAAM,CAAC,UAAU,CAAC,QAAQ,CAAC,CAAC,MAAM,CAAC,cAAc,GAAG,GAAG,CAAC,CAAC,MAAM,CAAC,KAAK,CAAC;AAEnF,QAAA,OAAO,MAAM,IAAI,CAAC,QAAQ,CAAC,aAAa,CAAC;AACrC,YAAA,IAAI,EAAE,QAAQ;AACd,YAAA,UAAU,EAAEE,gCAAsB;YAClC,MAAM;YACN,QAAQ;AACR,YAAA,KAAK,EAAE,CAAC;AACR,YAAA,IAAI,EAAE,WAAW;YACjB,OAAO;AACP,YAAA,QAAQ,EAAE,CAAC;AACX,YAAA,MAAM,EAAE,CAAC;AACT,YAAA,KAAK,EAAEC,uBAAa;AACpB,YAAA,WAAW,EAAEC,6BAAmB;YAChC;AACH,SAAA,CAAC;;AAGN;;AAEG;AACH,IAAA,MAAM,qBAAqB,CACvB,MAAc,EACd,QAAgB,EAAA;QAEhB,MAAM,GAAG,GAAG,IAAI,IAAI,EAAE,CAAC,WAAW,EAAE;QACpC,MAAM,cAAc,GAAG,EAAE;QACzB,MAAM,IAAI,GAAGJ,uBAAM,CAAC,UAAU,CAAC,QAAQ,CAAC,CAAC,MAAM,CAAC,cAAc,GAAG,GAAG,CAAC,CAAC,MAAM,CAAC,KAAK,CAAC;AAEnF,QAAA,OAAO,MAAM,IAAI,CAAC,QAAQ,CAAC,aAAa,CAAC;AACrC,YAAA,IAAI,EAAEK,gCAAsB;AAC5B,YAAA,UAAU,EAAEH,gCAAsB;YAClC,MAAM;YACN,QAAQ;AACR,YAAA,KAAK,EAAE,CAAC;AACR,YAAA,IAAI,EAAE,WAAW;AACjB,YAAA,OAAO,EAAE,EAAE;AACX,YAAA,QAAQ,EAAE,CAAC;AACX,YAAA,MAAM,EAAE,CAAC;AACT,YAAA,KAAK,EAAEC,uBAAa;AACpB,YAAA,WAAW,EAAEC,6BAAmB;YAChC;AACH,SAAA,CAAC;;AAGN;;AAEG;IACH,MAAM,cAAc,CAAC,SAAiB,EAAA;AAClC,QAAA,IAAI;YACA,MAAM,OAAO,GAAG,MAAM,IAAI,CAAC,QAAQ,CAAC,cAAc,CAAC,SAAS,CAAC;YAC7D,IAAI,CAAC,OAAO,EAAE;AACV,gBAAA,MAAM,IAAI,KAAK,CAAC,mBAAmB,SAAS,CAAA,UAAA,CAAY,CAAC;;AAE7D,YAAA,OAAO,OAAO;;QAChB,OAAO,KAAK,EAAE;YACZ,MAAM,IAAI,KAAK,CAAC,CAA8B,2BAAA,EAAA,SAAS,KAAK,KAAK,YAAY,KAAK,GAAG,KAAK,CAAC,OAAO,GAAG,MAAM,CAAC,KAAK,CAAC,CAAE,CAAA,CAAC;;;AAI7H;;AAEG;AACH,IAAA,MAAM,yBAAyB,CAAC,MAAc,EAAE,IAAY,EAAA;AACxD,QAAA,IAAI;AACA,YAAA,MAAM,QAAQ,GAAG,MAAM,IAAI,CAAC,QAAQ,CAAC,0BAA0B,CAAC,MAAM,EAAE,IAAI,CAAC;AAC7E,YAAA,IAAI,QAAQ,CAAC,MAAM,KAAK,CAAC,EAAE;gBACvB,MAAM,IAAI,KAAK,CAAC,CAAA,oBAAA,EAAuB,IAAI,CAAoB,iBAAA,EAAA,MAAM,CAAE,CAAA,CAAC;;AAE5E,YAAA,OAAO,QAAQ,CAAC,CAAC,CAAC;;QACpB,OAAO,KAAK,EAAE;YACZ,MAAM,IAAI,KAAK,CAAC,CAAuC,oCAAA,EAAA,MAAM,KAAK,KAAK,YAAY,KAAK,GAAG,KAAK,CAAC,OAAO,GAAG,MAAM,CAAC,KAAK,CAAC,CAAE,CAAA,CAAC;;;AAInI;;AAEG;AACH,IAAA,MAAM,aAAa,CAAC,SAAiB,EAAE,OAAyB,EAAA;AAC5D,QAAA,IAAI;YACA,MAAM,IAAI,CAAC,QAAQ,CAAC,aAAa,CAAC,SAAS,EAAE,OAAO,CAAC;;QACvD,OAAO,KAAK,EAAE;YACZ,MAAM,IAAI,KAAK,CAAC,CAA4B,yBAAA,EAAA,SAAS,KAAK,KAAK,YAAY,KAAK,GAAG,KAAK,CAAC,OAAO,GAAG,MAAM,CAAC,KAAK,CAAC,CAAE,CAAA,CAAC;;;AAG9H;;;;"}
|
package/dist/cjs/index.js
CHANGED
package/dist/cjs/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sources":[],"sourcesContent":[],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"index.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;"}
|
|
@@ -1,15 +1,16 @@
|
|
|
1
|
+
import crypto from 'crypto';
|
|
1
2
|
import { CHAT_VISIBILITY_PUBLIC, MESSAGE_TYPE_REGULAR, DEFAULT_TEMPERATURE, DEFAULT_MODEL, MESSAGE_TYPE_CHAT_META } from './constants.js';
|
|
2
3
|
|
|
3
4
|
/**
|
|
4
5
|
* Component: Message Manager
|
|
5
|
-
* Block-UUID:
|
|
6
|
-
* Parent-UUID:
|
|
7
|
-
* Version: 1.
|
|
8
|
-
* Purpose: Handles message creation, retrieval, and updates, including markdown table generation
|
|
6
|
+
* Block-UUID: 3bb80822-8ce7-4158-98b2-acf5996241b8
|
|
7
|
+
* Parent-UUID: 1f0d0090-1be3-466a-8576-cc860c1eb397
|
|
8
|
+
* Version: 1.2.0
|
|
9
|
+
* Purpose: Handles message creation, retrieval, and updates, including markdown table generation and hash generation
|
|
9
10
|
* Language: TypeScript
|
|
10
11
|
* Created-at: 2025-03-15T02:07:30.618Z
|
|
11
12
|
* Updated-at: 2025-03-16T02:16:32.958Z
|
|
12
|
-
* Authors: together.ai - DeepSeek v3 (v1.0.0), OpenRouter - DeepSeek v3 (v1.1.0)
|
|
13
|
+
* Authors: together.ai - DeepSeek v3 (v1.0.0), OpenRouter - DeepSeek v3 (v1.1.0), GLM-4.7 (v1.2.0)
|
|
13
14
|
*/
|
|
14
15
|
class MessageManager {
|
|
15
16
|
dbClient;
|
|
@@ -23,6 +24,9 @@ class MessageManager {
|
|
|
23
24
|
*/
|
|
24
25
|
async createSystemMessage(chatId) {
|
|
25
26
|
try {
|
|
27
|
+
const now = new Date().toISOString();
|
|
28
|
+
const messageContent = '';
|
|
29
|
+
const hash = crypto.createHash('sha256').update(messageContent + now).digest('hex');
|
|
26
30
|
return await this.dbClient.createMessage({
|
|
27
31
|
type: MESSAGE_TYPE_REGULAR,
|
|
28
32
|
visibility: CHAT_VISIBILITY_PUBLIC,
|
|
@@ -31,7 +35,8 @@ class MessageManager {
|
|
|
31
35
|
level: 0,
|
|
32
36
|
role: 'system',
|
|
33
37
|
message: '',
|
|
34
|
-
priority: 0
|
|
38
|
+
priority: 0,
|
|
39
|
+
hash
|
|
35
40
|
});
|
|
36
41
|
}
|
|
37
42
|
catch (error) {
|
|
@@ -45,6 +50,9 @@ class MessageManager {
|
|
|
45
50
|
if (!message) {
|
|
46
51
|
message = '';
|
|
47
52
|
}
|
|
53
|
+
const now = new Date().toISOString();
|
|
54
|
+
const messageContent = message;
|
|
55
|
+
const hash = crypto.createHash('sha256').update(messageContent + now).digest('hex');
|
|
48
56
|
return await this.dbClient.createMessage({
|
|
49
57
|
type: chatType,
|
|
50
58
|
visibility: CHAT_VISIBILITY_PUBLIC,
|
|
@@ -56,13 +64,17 @@ class MessageManager {
|
|
|
56
64
|
priority: 0,
|
|
57
65
|
sample: 1,
|
|
58
66
|
model: DEFAULT_MODEL,
|
|
59
|
-
temperature: DEFAULT_TEMPERATURE
|
|
67
|
+
temperature: DEFAULT_TEMPERATURE,
|
|
68
|
+
hash
|
|
60
69
|
});
|
|
61
70
|
}
|
|
62
71
|
/**
|
|
63
72
|
* Creates the main message for a chat.
|
|
64
73
|
*/
|
|
65
74
|
async createChatMetaMessage(chatId, parentId) {
|
|
75
|
+
const now = new Date().toISOString();
|
|
76
|
+
const messageContent = '';
|
|
77
|
+
const hash = crypto.createHash('sha256').update(messageContent + now).digest('hex');
|
|
66
78
|
return await this.dbClient.createMessage({
|
|
67
79
|
type: MESSAGE_TYPE_CHAT_META,
|
|
68
80
|
visibility: CHAT_VISIBILITY_PUBLIC,
|
|
@@ -75,6 +87,7 @@ class MessageManager {
|
|
|
75
87
|
sample: 1,
|
|
76
88
|
model: DEFAULT_MODEL,
|
|
77
89
|
temperature: DEFAULT_TEMPERATURE,
|
|
90
|
+
hash
|
|
78
91
|
});
|
|
79
92
|
}
|
|
80
93
|
/**
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"message-manager.js","sources":["../../../../src/importer/chat-manager/message-manager.ts"],"sourcesContent":[null],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"message-manager.js","sources":["../../../../src/importer/chat-manager/message-manager.ts"],"sourcesContent":[null],"names":[],"mappings":"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"}
|
package/dist/esm/index.js
CHANGED
package/dist/esm/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sources":[],"sourcesContent":[],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"index.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@gitsense/gscb-git-tools",
|
|
3
|
-
"version": "0.4.
|
|
3
|
+
"version": "0.4.8",
|
|
4
4
|
"description": "Git repository tools for the GitSense Chat Bridge (GSCB)",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/cjs/index.js",
|
|
@@ -24,7 +24,7 @@
|
|
|
24
24
|
},
|
|
25
25
|
"dependencies": {
|
|
26
26
|
"events": "^3.3.0",
|
|
27
|
-
"@gitsense/gscb-db": "^0.3.
|
|
27
|
+
"@gitsense/gscb-db": "^0.3.2",
|
|
28
28
|
"@gitsense/gscb-git": "^0.2.0",
|
|
29
29
|
"@gitsense/gscb-utils": "^0.1.0"
|
|
30
30
|
},
|