aboutsummaryrefslogtreecommitdiffstats
path: root/apps/workers/openaiWorker.ts
diff options
context:
space:
mode:
authorMohamed Bassem <me@mbassem.com>2024-10-27 23:37:54 +0000
committerMohamed Bassem <me@mbassem.com>2024-10-27 23:40:10 +0000
commita746e9a38e53e4a9114d786c7fb1b3ef4ca67870 (patch)
treebf1d819f6faca01bc7c3db1efe91c0879caaf4a8 /apps/workers/openaiWorker.ts
parenteb7da996a7c2d617d276f296cac07a6fd5648664 (diff)
downloadkarakeep-a746e9a38e53e4a9114d786c7fb1b3ef4ca67870.tar.zst
deps: Extract the queue implementation into its own repos
Diffstat (limited to 'apps/workers/openaiWorker.ts')
-rw-r--r--apps/workers/openaiWorker.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/workers/openaiWorker.ts b/apps/workers/openaiWorker.ts
index 4fe74f44..5a4fd69d 100644
--- a/apps/workers/openaiWorker.ts
+++ b/apps/workers/openaiWorker.ts
@@ -1,4 +1,5 @@
import { and, Column, eq, inArray, sql } from "drizzle-orm";
+import { DequeuedJob, Runner } from "liteque";
import { z } from "zod";
import type { InferenceClient } from "@hoarder/shared/inference";
@@ -11,7 +12,6 @@ import {
customPrompts,
tagsOnBookmarks,
} from "@hoarder/db/schema";
-import { DequeuedJob, Runner } from "@hoarder/queue";
import { readAsset } from "@hoarder/shared/assetdb";
import serverConfig from "@hoarder/shared/config";
import { InferenceClientFactory } from "@hoarder/shared/inference";