trustgraph/ts/entrypoints/text-completion-openai-compatible.mjs
elpresidank ffd97375a8 saving
2026-05-12 08:06:58 -05:00

9 lines
281 B
JavaScript

import("@effect/platform-bun/BunRuntime")
.then(async (BunRuntime) => {
const m = await import("../packages/flow/dist/model/text-completion/openai-compatible.js");
BunRuntime.runMain(m.program);
})
.catch((err) => {
console.error(err);
process.exit(1);
});