@proteinjs/conversation 2.1.3 → 2.1.5
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/CHANGELOG.md +11 -0
- package/LICENSE +21 -0
- package/dist/index.d.ts +8 -1
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +8 -0
- package/dist/index.js.map +1 -1
- package/dist/src/Conversation.d.ts +43 -1
- package/dist/src/Conversation.d.ts.map +1 -1
- package/dist/src/Conversation.js +255 -5
- package/dist/src/Conversation.js.map +1 -1
- package/dist/src/OpenAi.d.ts +29 -0
- package/dist/src/OpenAi.d.ts.map +1 -1
- package/dist/src/OpenAi.js +77 -30
- package/dist/src/OpenAi.js.map +1 -1
- package/dist/src/fs/conversation_fs/ConversationFsModule.d.ts +1 -0
- package/dist/src/fs/conversation_fs/ConversationFsModule.d.ts.map +1 -1
- package/dist/src/fs/conversation_fs/ConversationFsModule.js +6 -2
- package/dist/src/fs/conversation_fs/ConversationFsModule.js.map +1 -1
- package/dist/src/fs/conversation_fs/FsFunctions.d.ts +36 -3
- package/dist/src/fs/conversation_fs/FsFunctions.d.ts.map +1 -1
- package/dist/src/fs/conversation_fs/FsFunctions.js +142 -20
- package/dist/src/fs/conversation_fs/FsFunctions.js.map +1 -1
- package/dist/src/fs/keyword_to_files_index/KeywordToFilesIndexModule.d.ts +4 -1
- package/dist/src/fs/keyword_to_files_index/KeywordToFilesIndexModule.d.ts.map +1 -1
- package/dist/src/fs/keyword_to_files_index/KeywordToFilesIndexModule.js +13 -9
- package/dist/src/fs/keyword_to_files_index/KeywordToFilesIndexModule.js.map +1 -1
- package/index.ts +10 -1
- package/package.json +6 -4
- package/src/Conversation.ts +311 -5
- package/src/OpenAi.ts +123 -13
- package/src/fs/conversation_fs/ConversationFsModule.ts +8 -2
- package/src/fs/conversation_fs/FsFunctions.ts +97 -17
- package/src/fs/keyword_to_files_index/KeywordToFilesIndexModule.ts +14 -9
|
@@ -1,4 +1,15 @@
|
|
|
1
1
|
"use strict";
|
|
2
|
+
var __assign = (this && this.__assign) || function () {
|
|
3
|
+
__assign = Object.assign || function(t) {
|
|
4
|
+
for (var s, i = 1, n = arguments.length; i < n; i++) {
|
|
5
|
+
s = arguments[i];
|
|
6
|
+
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
|
|
7
|
+
t[p] = s[p];
|
|
8
|
+
}
|
|
9
|
+
return t;
|
|
10
|
+
};
|
|
11
|
+
return __assign.apply(this, arguments);
|
|
12
|
+
};
|
|
2
13
|
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
|
|
3
14
|
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
|
|
4
15
|
return new (P || (P = Promise))(function (resolve, reject) {
|
|
@@ -35,9 +46,76 @@ var __generator = (this && this.__generator) || function (thisArg, body) {
|
|
|
35
46
|
if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };
|
|
36
47
|
}
|
|
37
48
|
};
|
|
49
|
+
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
50
|
+
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
51
|
+
};
|
|
38
52
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
39
|
-
exports.fsFunctions = exports.moveFunctionName = exports.copyFunctionName = exports.renameFunctionName = exports.getFilePathsMatchingGlobFunctionName = exports.fileOrDirectoryExistsFunction = exports.fileOrDirectoryExistsFunctionName = exports.getRecentlyAccessedFilePathsFunction = exports.getRecentlyAccessedFilePathsFunctionName = exports.writeFilesFunction = exports.writeFilesFunctionName = exports.readFilesFunction = exports.readFilesFunctionName = void 0;
|
|
53
|
+
exports.fsFunctions = exports.grepFunction = exports.grepFunctionName = exports.moveFunctionName = exports.copyFunctionName = exports.renameFunctionName = exports.getFilePathsMatchingGlobFunctionName = exports.fileOrDirectoryExistsFunction = exports.fileOrDirectoryExistsFunctionName = exports.getRecentlyAccessedFilePathsFunction = exports.getRecentlyAccessedFilePathsFunctionName = exports.writeFilesFunction = exports.writeFilesFunctionName = exports.readFilesFunction = exports.readFilesFunctionName = void 0;
|
|
40
54
|
var util_node_1 = require("@proteinjs/util-node");
|
|
55
|
+
var path_1 = __importDefault(require("path"));
|
|
56
|
+
var toRepoAbs = function (mod, p) { return (path_1.default.isAbsolute(p) ? p : path_1.default.join(mod.getRepoPath(), p)); };
|
|
57
|
+
// If path doesn’t exist, try to resolve "<repo>/<basename>" to the actual file under repo
|
|
58
|
+
function canonicalizePaths(mod, paths) {
|
|
59
|
+
return __awaiter(this, void 0, void 0, function () {
|
|
60
|
+
var repo, ignore, out, _i, paths_1, p, abs, base, parsed, pattern, matches, _a;
|
|
61
|
+
return __generator(this, function (_b) {
|
|
62
|
+
switch (_b.label) {
|
|
63
|
+
case 0:
|
|
64
|
+
repo = mod.getRepoPath();
|
|
65
|
+
ignore = ['**/node_modules/**', '**/dist/**', '**/.git/**'];
|
|
66
|
+
out = [];
|
|
67
|
+
_i = 0, paths_1 = paths;
|
|
68
|
+
_b.label = 1;
|
|
69
|
+
case 1:
|
|
70
|
+
if (!(_i < paths_1.length)) return [3 /*break*/, 8];
|
|
71
|
+
p = paths_1[_i];
|
|
72
|
+
abs = toRepoAbs(mod, p);
|
|
73
|
+
return [4 /*yield*/, util_node_1.Fs.exists(abs)];
|
|
74
|
+
case 2:
|
|
75
|
+
if (_b.sent()) {
|
|
76
|
+
out.push(abs);
|
|
77
|
+
return [3 /*break*/, 7];
|
|
78
|
+
}
|
|
79
|
+
base = path_1.default.basename(p);
|
|
80
|
+
if (!base) {
|
|
81
|
+
out.push(abs);
|
|
82
|
+
return [3 /*break*/, 7];
|
|
83
|
+
}
|
|
84
|
+
parsed = path_1.default.parse(base);
|
|
85
|
+
pattern = parsed.ext ? "**/".concat(parsed.name).concat(parsed.ext) : "**/".concat(parsed.name, ".*");
|
|
86
|
+
matches = [];
|
|
87
|
+
_b.label = 3;
|
|
88
|
+
case 3:
|
|
89
|
+
_b.trys.push([3, 5, , 6]);
|
|
90
|
+
return [4 /*yield*/, util_node_1.Fs.getFilePathsMatchingGlob(repo, pattern, ignore)];
|
|
91
|
+
case 4:
|
|
92
|
+
matches = _b.sent();
|
|
93
|
+
return [3 /*break*/, 6];
|
|
94
|
+
case 5:
|
|
95
|
+
_a = _b.sent();
|
|
96
|
+
return [3 /*break*/, 6];
|
|
97
|
+
case 6:
|
|
98
|
+
if (matches.length === 1) {
|
|
99
|
+
out.push(matches[0]);
|
|
100
|
+
}
|
|
101
|
+
else if (matches.length > 1) {
|
|
102
|
+
// Prefer the shortest match (usually “src/...” beats deeper/duplicate locations)
|
|
103
|
+
matches.sort(function (a, b) { return a.length - b.length; });
|
|
104
|
+
out.push(matches[0]);
|
|
105
|
+
}
|
|
106
|
+
else {
|
|
107
|
+
// No luck; keep the original absolute (will throw with a clear error)
|
|
108
|
+
out.push(abs);
|
|
109
|
+
}
|
|
110
|
+
_b.label = 7;
|
|
111
|
+
case 7:
|
|
112
|
+
_i++;
|
|
113
|
+
return [3 /*break*/, 1];
|
|
114
|
+
case 8: return [2 /*return*/, out];
|
|
115
|
+
}
|
|
116
|
+
});
|
|
117
|
+
});
|
|
118
|
+
}
|
|
41
119
|
exports.readFilesFunctionName = 'readFiles';
|
|
42
120
|
function readFilesFunction(fsModule) {
|
|
43
121
|
var _this = this;
|
|
@@ -51,21 +129,23 @@ function readFilesFunction(fsModule) {
|
|
|
51
129
|
filePaths: {
|
|
52
130
|
type: 'array',
|
|
53
131
|
description: 'Paths to the files',
|
|
54
|
-
items: {
|
|
55
|
-
type: 'string',
|
|
56
|
-
},
|
|
132
|
+
items: { type: 'string' },
|
|
57
133
|
},
|
|
58
134
|
},
|
|
59
135
|
required: ['filePaths'],
|
|
60
136
|
},
|
|
61
137
|
},
|
|
62
138
|
call: function (params) { return __awaiter(_this, void 0, void 0, function () {
|
|
139
|
+
var absPaths;
|
|
63
140
|
return __generator(this, function (_a) {
|
|
64
141
|
switch (_a.label) {
|
|
65
142
|
case 0:
|
|
66
143
|
fsModule.pushRecentlyAccessedFilePath(params.filePaths);
|
|
67
|
-
return [4 /*yield*/,
|
|
68
|
-
case 1:
|
|
144
|
+
return [4 /*yield*/, canonicalizePaths(fsModule, params.filePaths)];
|
|
145
|
+
case 1:
|
|
146
|
+
absPaths = _a.sent();
|
|
147
|
+
return [4 /*yield*/, util_node_1.Fs.readFiles(absPaths)];
|
|
148
|
+
case 2: return [2 /*return*/, _a.sent()];
|
|
69
149
|
}
|
|
70
150
|
});
|
|
71
151
|
}); },
|
|
@@ -85,19 +165,10 @@ function writeFilesFunction(fsModule) {
|
|
|
85
165
|
properties: {
|
|
86
166
|
files: {
|
|
87
167
|
type: 'array',
|
|
88
|
-
description: 'Files to write',
|
|
89
168
|
items: {
|
|
90
169
|
type: 'object',
|
|
91
|
-
properties: {
|
|
92
|
-
|
|
93
|
-
type: 'string',
|
|
94
|
-
description: 'the file path',
|
|
95
|
-
},
|
|
96
|
-
content: {
|
|
97
|
-
type: 'string',
|
|
98
|
-
description: 'the content to write to the file',
|
|
99
|
-
},
|
|
100
|
-
},
|
|
170
|
+
properties: { path: { type: 'string' }, content: { type: 'string' } },
|
|
171
|
+
required: ['path', 'content'],
|
|
101
172
|
},
|
|
102
173
|
},
|
|
103
174
|
},
|
|
@@ -105,12 +176,17 @@ function writeFilesFunction(fsModule) {
|
|
|
105
176
|
},
|
|
106
177
|
},
|
|
107
178
|
call: function (params) { return __awaiter(_this, void 0, void 0, function () {
|
|
179
|
+
var canon, absFiles;
|
|
108
180
|
return __generator(this, function (_a) {
|
|
109
181
|
switch (_a.label) {
|
|
110
182
|
case 0:
|
|
111
|
-
fsModule.pushRecentlyAccessedFilePath(params.files.map(function (
|
|
112
|
-
return [4 /*yield*/,
|
|
113
|
-
case 1:
|
|
183
|
+
fsModule.pushRecentlyAccessedFilePath(params.files.map(function (f) { return f.path; }));
|
|
184
|
+
return [4 /*yield*/, canonicalizePaths(fsModule, params.files.map(function (f) { return f.path; }))];
|
|
185
|
+
case 1:
|
|
186
|
+
canon = _a.sent();
|
|
187
|
+
absFiles = params.files.map(function (f, i) { return (__assign(__assign({}, f), { path: canon[i] })); });
|
|
188
|
+
return [4 /*yield*/, util_node_1.Fs.writeFiles(absFiles)];
|
|
189
|
+
case 2: return [2 /*return*/, _a.sent()];
|
|
114
190
|
}
|
|
115
191
|
});
|
|
116
192
|
}); },
|
|
@@ -306,6 +382,52 @@ var moveFunction = {
|
|
|
306
382
|
}); }); },
|
|
307
383
|
instructions: ["To move a file or directory, use the ".concat(exports.moveFunctionName, " function")],
|
|
308
384
|
};
|
|
385
|
+
exports.grepFunctionName = 'grep';
|
|
386
|
+
function grepFunction(fsModule) {
|
|
387
|
+
var _this = this;
|
|
388
|
+
return {
|
|
389
|
+
definition: {
|
|
390
|
+
name: exports.grepFunctionName,
|
|
391
|
+
description: "Run system grep recursively (-F literal) within the repository and return raw stdout/stderr/code. Excludes node_modules, dist, and .git. Use 'maxResults' to cap output.",
|
|
392
|
+
parameters: {
|
|
393
|
+
type: 'object',
|
|
394
|
+
properties: {
|
|
395
|
+
pattern: {
|
|
396
|
+
type: 'string',
|
|
397
|
+
description: 'Literal text to search for (grep -F). For parentheses or special characters, pass them as-is; no regex needed.',
|
|
398
|
+
},
|
|
399
|
+
dir: {
|
|
400
|
+
type: 'string',
|
|
401
|
+
description: 'Directory to search under. If relative, it is resolved against the repo root. Defaults to the repo root.',
|
|
402
|
+
},
|
|
403
|
+
maxResults: {
|
|
404
|
+
type: 'number',
|
|
405
|
+
description: 'Maximum number of matching lines to return (uses grep -m N).',
|
|
406
|
+
},
|
|
407
|
+
},
|
|
408
|
+
required: ['pattern'],
|
|
409
|
+
},
|
|
410
|
+
},
|
|
411
|
+
call: function (params) { return __awaiter(_this, void 0, void 0, function () {
|
|
412
|
+
var repo, cwd;
|
|
413
|
+
return __generator(this, function (_a) {
|
|
414
|
+
switch (_a.label) {
|
|
415
|
+
case 0:
|
|
416
|
+
repo = fsModule.getRepoPath();
|
|
417
|
+
cwd = params.dir ? toRepoAbs(fsModule, params.dir) : repo;
|
|
418
|
+
return [4 /*yield*/, util_node_1.Fs.grep({ pattern: params.pattern, dir: cwd, maxResults: params.maxResults })];
|
|
419
|
+
case 1: return [2 /*return*/, _a.sent()];
|
|
420
|
+
}
|
|
421
|
+
});
|
|
422
|
+
}); },
|
|
423
|
+
instructions: [
|
|
424
|
+
"Use ".concat(exports.grepFunctionName, " to search for literal text across the repo."),
|
|
425
|
+
"Prefer small 'maxResults' (e.g., 5-20) to avoid flooding the context.",
|
|
426
|
+
"Parse the returned stdout yourself (format: \"<path>:<line>:<text>\") to pick files to read.",
|
|
427
|
+
],
|
|
428
|
+
};
|
|
429
|
+
}
|
|
430
|
+
exports.grepFunction = grepFunction;
|
|
309
431
|
exports.fsFunctions = [
|
|
310
432
|
createFolderFunction,
|
|
311
433
|
exports.fileOrDirectoryExistsFunction,
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"FsFunctions.js","sourceRoot":"","sources":["../../../../src/fs/conversation_fs/FsFunctions.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"FsFunctions.js","sourceRoot":"","sources":["../../../../src/fs/conversation_fs/FsFunctions.ts"],"names":[],"mappings":"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"}
|
|
@@ -3,7 +3,7 @@ import { Function } from '../../Function';
|
|
|
3
3
|
export type KeywordToFilesIndexModuleParams = {
|
|
4
4
|
dir: string;
|
|
5
5
|
keywordFilesIndex: {
|
|
6
|
-
[keyword: string]: string[];
|
|
6
|
+
[keyword: string]: string[];
|
|
7
7
|
};
|
|
8
8
|
};
|
|
9
9
|
export declare class KeywordToFilesIndexModule implements ConversationModule {
|
|
@@ -11,6 +11,9 @@ export declare class KeywordToFilesIndexModule implements ConversationModule {
|
|
|
11
11
|
params: KeywordToFilesIndexModuleParams;
|
|
12
12
|
constructor(params: KeywordToFilesIndexModuleParams);
|
|
13
13
|
getName(): string;
|
|
14
|
+
/**
|
|
15
|
+
* Case-insensitive file name search that ignores extension.
|
|
16
|
+
*/
|
|
14
17
|
searchFiles(params: {
|
|
15
18
|
keyword: string;
|
|
16
19
|
}): string[];
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"KeywordToFilesIndexModule.d.ts","sourceRoot":"","sources":["../../../../src/fs/keyword_to_files_index/KeywordToFilesIndexModule.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,kBAAkB,EAAE,yBAAyB,EAAE,MAAM,0BAA0B,CAAC;AACzF,OAAO,EAAE,QAAQ,EAAE,MAAM,gBAAgB,CAAC;AAI1C,MAAM,MAAM,+BAA+B,GAAG;IAC5C,GAAG,EAAE,MAAM,CAAC;
|
|
1
|
+
{"version":3,"file":"KeywordToFilesIndexModule.d.ts","sourceRoot":"","sources":["../../../../src/fs/keyword_to_files_index/KeywordToFilesIndexModule.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,kBAAkB,EAAE,yBAAyB,EAAE,MAAM,0BAA0B,CAAC;AACzF,OAAO,EAAE,QAAQ,EAAE,MAAM,gBAAgB,CAAC;AAI1C,MAAM,MAAM,+BAA+B,GAAG;IAC5C,GAAG,EAAE,MAAM,CAAC;IAEZ,iBAAiB,EAAE;QAAE,CAAC,OAAO,EAAE,MAAM,GAAG,MAAM,EAAE,CAAA;KAAE,CAAC;CACpD,CAAC;AAEF,qBAAa,yBAA0B,YAAW,kBAAkB;IAClE,OAAO,CAAC,MAAM,CAA+C;IAC7D,MAAM,EAAE,+BAA+B,CAAC;gBAE5B,MAAM,EAAE,+BAA+B;IAInD,OAAO,IAAI,MAAM;IAIjB;;OAEG;IACH,WAAW,CAAC,MAAM,EAAE;QAAE,OAAO,EAAE,MAAM,CAAA;KAAE;IAOvC,iBAAiB,IAAI,MAAM,EAAE;IAM7B,YAAY,IAAI,QAAQ,EAAE;IAI1B,oBAAoB;CAGrB;AAED,qBAAa,gCAAiC,YAAW,yBAAyB;IAChF,OAAO,CAAC,MAAM,CAA+C;IAEvD,YAAY,CAAC,QAAQ,EAAE,MAAM,GAAG,OAAO,CAAC,yBAAyB,CAAC;IAQxE;;;;;OAKG;IACG,uBAAuB,CAC3B,OAAO,EAAE,MAAM,EACf,kBAAkB,GAAE,MAAM,EAAO,GAChC,OAAO,CAAC;QAAE,CAAC,OAAO,EAAE,MAAM,GAAG,MAAM,EAAE,CAAA;KAAE,CAAC;CAyB5C"}
|
|
@@ -61,14 +61,18 @@ var KeywordToFilesIndexModule = /** @class */ (function () {
|
|
|
61
61
|
KeywordToFilesIndexModule.prototype.getName = function () {
|
|
62
62
|
return 'Keyword to files index';
|
|
63
63
|
};
|
|
64
|
+
/**
|
|
65
|
+
* Case-insensitive file name search that ignores extension.
|
|
66
|
+
*/
|
|
64
67
|
KeywordToFilesIndexModule.prototype.searchFiles = function (params) {
|
|
65
|
-
this.logger.
|
|
66
|
-
var
|
|
68
|
+
this.logger.debug({ message: "Searching for file, keyword: ".concat(params.keyword) });
|
|
69
|
+
var keywordLowerNoExtension = path_1.default.parse(params.keyword).name.toLowerCase();
|
|
70
|
+
var filePaths = this.params.keywordFilesIndex[keywordLowerNoExtension];
|
|
67
71
|
return filePaths || [];
|
|
68
72
|
};
|
|
69
73
|
KeywordToFilesIndexModule.prototype.getSystemMessages = function () {
|
|
70
74
|
return [
|
|
71
|
-
"If you're searching for something, use the ".concat(KeywordToFilesIndexFunctions_1.searchFilesFunctionName, " function to find a file matching the search string"),
|
|
75
|
+
"If you're searching for something, use the ".concat(KeywordToFilesIndexFunctions_1.searchFilesFunctionName, " function to find a file (by name) matching the search string"),
|
|
72
76
|
];
|
|
73
77
|
};
|
|
74
78
|
KeywordToFilesIndexModule.prototype.getFunctions = function () {
|
|
@@ -111,7 +115,7 @@ var KeywordToFilesIndexModuleFactory = /** @class */ (function () {
|
|
|
111
115
|
KeywordToFilesIndexModuleFactory.prototype.createKeywordFilesIndex = function (baseDir, globIgnorePatterns) {
|
|
112
116
|
if (globIgnorePatterns === void 0) { globIgnorePatterns = []; }
|
|
113
117
|
return __awaiter(this, void 0, void 0, function () {
|
|
114
|
-
var filePaths, keywordFilesIndex, _i, filePaths_1, filePath,
|
|
118
|
+
var filePaths, keywordFilesIndex, _i, filePaths_1, filePath, fileNameLower;
|
|
115
119
|
return __generator(this, function (_a) {
|
|
116
120
|
switch (_a.label) {
|
|
117
121
|
case 0:
|
|
@@ -126,12 +130,12 @@ var KeywordToFilesIndexModuleFactory = /** @class */ (function () {
|
|
|
126
130
|
// Process each file path
|
|
127
131
|
for (_i = 0, filePaths_1 = filePaths; _i < filePaths_1.length; _i++) {
|
|
128
132
|
filePath = filePaths_1[_i];
|
|
129
|
-
|
|
130
|
-
if (!keywordFilesIndex[
|
|
131
|
-
keywordFilesIndex[
|
|
133
|
+
fileNameLower = path_1.default.parse(filePath).name.toLowerCase();
|
|
134
|
+
if (!keywordFilesIndex[fileNameLower]) {
|
|
135
|
+
keywordFilesIndex[fileNameLower] = [];
|
|
132
136
|
}
|
|
133
|
-
this.logger.debug({ message: "fileName: ".concat(
|
|
134
|
-
keywordFilesIndex[
|
|
137
|
+
this.logger.debug({ message: "fileName: ".concat(fileNameLower, ", filePath: ").concat(filePath) });
|
|
138
|
+
keywordFilesIndex[fileNameLower].push(filePath);
|
|
135
139
|
}
|
|
136
140
|
return [2 /*return*/, keywordFilesIndex];
|
|
137
141
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"KeywordToFilesIndexModule.js","sourceRoot":"","sources":["../../../../src/fs/keyword_to_files_index/KeywordToFilesIndexModule.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,4CAA2C;AAC3C,kDAA0C;AAG1C,8CAAwB;AACxB,+EAA8F;
|
|
1
|
+
{"version":3,"file":"KeywordToFilesIndexModule.js","sourceRoot":"","sources":["../../../../src/fs/keyword_to_files_index/KeywordToFilesIndexModule.ts"],"names":[],"mappings":"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"}
|
package/index.ts
CHANGED
|
@@ -11,4 +11,13 @@ export * from './src/history/MessageModerator';
|
|
|
11
11
|
export * from './src/history/MessageHistory';
|
|
12
12
|
export * from './src/ChatCompletionMessageParamFactory';
|
|
13
13
|
export { AssistantResponseStreamChunk } from './src/OpenAiStreamProcessor';
|
|
14
|
-
export { UsageData } from './src/UsageData';
|
|
14
|
+
export { UsageData, TokenUsage } from './src/UsageData';
|
|
15
|
+
|
|
16
|
+
// Conversation modules
|
|
17
|
+
export * from './src/fs/conversation_fs/ConversationFsModule';
|
|
18
|
+
export * from './src/fs/conversation_fs/FsFunctions';
|
|
19
|
+
export * from './src/fs/git/GitModule';
|
|
20
|
+
export * from './src/fs/keyword_to_files_index/KeywordToFilesIndexModule';
|
|
21
|
+
export * from './src/fs/keyword_to_files_index/KeywordToFilesIndexFunctions';
|
|
22
|
+
export * from './src/fs/package/PackageModule';
|
|
23
|
+
export * from './src/fs/package/PackageFunctions';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@proteinjs/conversation",
|
|
3
|
-
"version": "2.1.
|
|
3
|
+
"version": "2.1.5",
|
|
4
4
|
"main": "dist/index.js",
|
|
5
5
|
"types": "dist/index.d.ts",
|
|
6
6
|
"publishConfig": {
|
|
@@ -28,13 +28,15 @@
|
|
|
28
28
|
"ts-jest": "^29.1.1"
|
|
29
29
|
},
|
|
30
30
|
"dependencies": {
|
|
31
|
-
"@proteinjs/logger": "1.0.
|
|
31
|
+
"@proteinjs/logger": "1.0.11",
|
|
32
32
|
"@proteinjs/util": "1.5.0",
|
|
33
|
-
"@proteinjs/util-node": "1.
|
|
33
|
+
"@proteinjs/util-node": "1.5.0",
|
|
34
|
+
"ai": "5.0.57",
|
|
34
35
|
"fs-extra": "11.1.1",
|
|
35
36
|
"openai": "4.85.3",
|
|
36
37
|
"readline-sync": "1.4.10",
|
|
37
38
|
"tiktoken": "1.0.15",
|
|
38
39
|
"typescript": "5.2.2"
|
|
39
|
-
}
|
|
40
|
+
},
|
|
41
|
+
"gitHead": "7d8f58fbf039d35eb8ccc80f950570298365b6e2"
|
|
40
42
|
}
|