@recombine-ai/engine 0.6.0 → 0.7.1
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/build/index.d.ts +4 -5
- package/build/index.d.ts.map +1 -1
- package/build/index.js +4 -8
- package/build/lib/ai.d.ts +336 -328
- package/build/lib/ai.d.ts.map +1 -1
- package/build/lib/ai.js +288 -275
- package/build/lib/bosun/agent.d.ts +34 -24
- package/build/lib/bosun/agent.d.ts.map +1 -1
- package/build/lib/bosun/agent.js +4 -27
- package/build/lib/bosun/context.d.ts.map +1 -1
- package/build/lib/bosun/context.js +1 -4
- package/build/lib/bosun/index.d.ts +2 -0
- package/build/lib/bosun/index.d.ts.map +1 -1
- package/build/lib/bosun/index.js +1 -0
- package/build/lib/bosun/stepTracer.d.ts +14 -0
- package/build/lib/bosun/stepTracer.d.ts.map +1 -0
- package/build/lib/bosun/stepTracer.js +2 -0
- package/build/lib/bosun/tracer.d.ts +19 -0
- package/build/lib/bosun/tracer.d.ts.map +1 -0
- package/build/lib/bosun/tracer.js +20 -0
- package/build/lib/interfaces.d.ts +17 -19
- package/build/lib/interfaces.d.ts.map +1 -1
- package/build/lib/prompt-fs.d.ts +17 -0
- package/build/lib/prompt-fs.d.ts.map +1 -0
- package/build/lib/prompt-fs.js +23 -0
- package/build/lib/rc-fs.d.ts +17 -0
- package/build/lib/rc-fs.d.ts.map +1 -0
- package/build/lib/rc-fs.js +22 -0
- package/changelog.md +26 -4
- package/eslint.config.mjs +52 -0
- package/package.json +9 -2
package/build/index.d.ts
CHANGED
|
@@ -1,7 +1,6 @@
|
|
|
1
|
-
|
|
2
|
-
export
|
|
3
|
-
export
|
|
4
|
-
export { delayFactory, Schedule, createScheduleQuery } from './lib/schedule';
|
|
5
|
-
export { Scheduler, Logger } from './lib/interfaces';
|
|
1
|
+
export * from './lib/ai';
|
|
2
|
+
export * from './lib/schedule';
|
|
3
|
+
export * from './lib/interfaces';
|
|
6
4
|
export * from './lib/bosun';
|
|
5
|
+
export * from './lib/prompt-fs';
|
|
7
6
|
//# sourceMappingURL=index.d.ts.map
|
package/build/index.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,UAAU,CAAA;AAExB,cAAc,gBAAgB,CAAA;AAE9B,cAAc,kBAAkB,CAAA;AAEhC,cAAc,aAAa,CAAA;AAE3B,cAAc,iBAAiB,CAAA"}
|
package/build/index.js
CHANGED
|
@@ -14,12 +14,8 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
|
14
14
|
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
15
15
|
};
|
|
16
16
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
Object.defineProperty(exports, "AIEngine", { enumerable: true, get: function () { return ai_2.AIEngine; } });
|
|
21
|
-
exports.createAIEngine = ai_1.AIEngine.createAIEngine;
|
|
22
|
-
var schedule_1 = require("./lib/schedule");
|
|
23
|
-
Object.defineProperty(exports, "delayFactory", { enumerable: true, get: function () { return schedule_1.delayFactory; } });
|
|
24
|
-
Object.defineProperty(exports, "createScheduleQuery", { enumerable: true, get: function () { return schedule_1.createScheduleQuery; } });
|
|
17
|
+
__exportStar(require("./lib/ai"), exports);
|
|
18
|
+
__exportStar(require("./lib/schedule"), exports);
|
|
19
|
+
__exportStar(require("./lib/interfaces"), exports);
|
|
25
20
|
__exportStar(require("./lib/bosun"), exports);
|
|
21
|
+
__exportStar(require("./lib/prompt-fs"), exports);
|