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
+4 -1
View File
@@ -225,7 +225,10 @@ describe("MediaController", () => {
expect(screenController.start).toHaveBeenCalledWith(
"https://youtu.be/video",
);
expect(resolveMediaSource).toHaveBeenCalledWith("https://youtu.be/video", "screen");
expect(resolveMediaSource).toHaveBeenCalledWith(
"https://youtu.be/video",
"screen",
);
expect(state).toMatchObject({ playing: true, activeMode: "screen" });
});