This commit is contained in:
elpresidank 2026-05-12 08:06:58 -05:00
parent e8c7a4f6e0
commit ffd97375a8
160 changed files with 6704 additions and 1895 deletions

View file

@ -1,5 +1,8 @@
import("../packages/flow/dist/retrieval/document-rag-service.js")
.then((m) => m.run())
import("@effect/platform-bun/BunRuntime")
.then(async (BunRuntime) => {
const m = await import("../packages/flow/dist/retrieval/document-rag-service.js");
BunRuntime.runMain(m.program);
})
.catch((err) => {
console.error(err);
process.exit(1);