feat: add multimodal analysis support to LLM moderation client by processing image attachments

This commit is contained in:
MythEclipse
2026-05-17 23:56:04 +07:00
parent 059d569566
commit 51dc1f8869
21 changed files with 443 additions and 83 deletions
+1 -1
View File
@@ -146,7 +146,7 @@ async function runAnalysisInWorker(
return new Promise((resolve, reject) => {
const worker = new Worker(
new URL("./aiAnalysisWorker.ts", import.meta.url),
{ execArgv: process.execArgv }
{ execArgv: process.execArgv },
);
worker.once("message", (response: AnalysisWorkerResponse) => {