@northflare/runner 0.0.32 → 0.0.33
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/{chunk-7D4SUZUM.js → chunk-54HOGCFN.js} +2 -1
- package/dist/{chunk-3QTLJ4CG.js → chunk-B47WUOBY.js} +4 -3
- package/dist/{chunk-3QTLJ4CG.js.map → chunk-B47WUOBY.js.map} +1 -1
- package/dist/{dist-W7DZRE4U.js → dist-4E3H46W5.js} +3 -2
- package/dist/{dist-W7DZRE4U.js.map → dist-4E3H46W5.js.map} +1 -1
- package/dist/index.js +11 -4
- package/dist/index.js.map +1 -1
- package/dist/sdk-query-TRMSGGID-V7NQOFUG.js +15 -0
- package/package.json +7 -1
- package/tsup.config.ts +5 -1
- package/dist/sdk-query-TRMSGGID-EIENWDKW.js +0 -14
- /package/dist/{chunk-7D4SUZUM.js.map → chunk-54HOGCFN.js.map} +0 -0
- /package/dist/{sdk-query-TRMSGGID-EIENWDKW.js.map → sdk-query-TRMSGGID-V7NQOFUG.js.map} +0 -0
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import { createRequire as __createRequire } from 'module'; const require = __createRequire(import.meta.url);
|
|
2
|
+
import {
|
|
3
|
+
__testGetSystemPrompt,
|
|
4
|
+
createAgentUIStream,
|
|
5
|
+
query,
|
|
6
|
+
streamQuery
|
|
7
|
+
} from "./chunk-B47WUOBY.js";
|
|
8
|
+
import "./chunk-54HOGCFN.js";
|
|
9
|
+
export {
|
|
10
|
+
__testGetSystemPrompt,
|
|
11
|
+
createAgentUIStream,
|
|
12
|
+
query,
|
|
13
|
+
streamQuery
|
|
14
|
+
};
|
|
15
|
+
//# sourceMappingURL=sdk-query-TRMSGGID-V7NQOFUG.js.map
|
package/package.json
CHANGED
|
@@ -1,11 +1,17 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@northflare/runner",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.33",
|
|
4
4
|
"description": "Distributed conversation runner for Northflare",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"type": "module",
|
|
7
7
|
"main": "dist/index.js",
|
|
8
8
|
"types": "dist/index.d.ts",
|
|
9
|
+
"exports": {
|
|
10
|
+
".": {
|
|
11
|
+
"types": "./dist/index.d.ts",
|
|
12
|
+
"import": "./dist/index.js"
|
|
13
|
+
}
|
|
14
|
+
},
|
|
9
15
|
"bin": "./bin/northflare-runner",
|
|
10
16
|
"dependencies": {
|
|
11
17
|
"@ai-sdk/groq": "^3.0.0-beta.42",
|
package/tsup.config.ts
CHANGED
|
@@ -11,5 +11,9 @@ export default defineConfig({
|
|
|
11
11
|
// Bundle workspace packages since they're not published, externalize everything else
|
|
12
12
|
noExternal: ["@northflare/codex-sdk", "@northflare/agent"],
|
|
13
13
|
// esbuild doesn't recognise Node subpath imports like readline/promises
|
|
14
|
-
external: ["readline/promises"],
|
|
14
|
+
external: ["readline/promises", "@openai/codex-sdk", "@openai/codex-sdk/*"],
|
|
15
|
+
// Provide Node require in ESM output so bundled CJS-style dynamic requires work.
|
|
16
|
+
banner: {
|
|
17
|
+
js: "import { createRequire as __createRequire } from 'module'; const require = __createRequire(import.meta.url);",
|
|
18
|
+
},
|
|
15
19
|
});
|
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
import {
|
|
2
|
-
__testGetSystemPrompt,
|
|
3
|
-
createAgentUIStream,
|
|
4
|
-
query,
|
|
5
|
-
streamQuery
|
|
6
|
-
} from "./chunk-3QTLJ4CG.js";
|
|
7
|
-
import "./chunk-7D4SUZUM.js";
|
|
8
|
-
export {
|
|
9
|
-
__testGetSystemPrompt,
|
|
10
|
-
createAgentUIStream,
|
|
11
|
-
query,
|
|
12
|
-
streamQuery
|
|
13
|
-
};
|
|
14
|
-
//# sourceMappingURL=sdk-query-TRMSGGID-EIENWDKW.js.map
|
|
File without changes
|
|
File without changes
|