This repository was archived by the owner on May 15, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3.4k
feat: add support for image file @mentions #10189
Merged
Merged
Changes from 5 commits
Commits
Show all changes
6 commits
Select commit
Hold shift + click to select a range
44f774f
feat: add support for image file @mentions
hannesrudolph 826275d
test: normalize edit-dialog images to empty array
hannesrudolph bc49d92
test: fix edit dialog image expectation
hannesrudolph 24b1f6e
fix: align image mentions with read_file behavior
hannesrudolph f2d1554
refactor: reuse existing imageHelpers functions per review feedback
hannesrudolph 6311205
refactor: remove unused SUPPORTED_IMAGE_FORMATS constant from test file
roomote File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
207 changes: 207 additions & 0 deletions
207
src/core/mentions/__tests__/resolveImageMentions.spec.ts
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,207 @@ | ||
| import * as path from "path" | ||
|
|
||
| import { resolveImageMentions } from "../resolveImageMentions" | ||
|
|
||
| const SUPPORTED_IMAGE_FORMATS = [ | ||
| ".png", | ||
| ".jpg", | ||
| ".jpeg", | ||
| ".gif", | ||
| ".webp", | ||
| ".svg", | ||
| ".bmp", | ||
| ".ico", | ||
| ".tiff", | ||
| ".tif", | ||
| ".avif", | ||
| ] as const | ||
|
|
||
| vi.mock("../../tools/helpers/imageHelpers", () => ({ | ||
| isSupportedImageFormat: vi.fn((ext: string) => | ||
| [".png", ".jpg", ".jpeg", ".gif", ".webp", ".svg", ".bmp", ".ico", ".tiff", ".tif", ".avif"].includes( | ||
| ext.toLowerCase(), | ||
| ), | ||
| ), | ||
| readImageAsDataUrlWithBuffer: vi.fn(), | ||
| validateImageForProcessing: vi.fn(), | ||
| ImageMemoryTracker: vi.fn().mockImplementation(() => ({ | ||
| getTotalMemoryUsed: vi.fn().mockReturnValue(0), | ||
| addMemoryUsage: vi.fn(), | ||
| })), | ||
| DEFAULT_MAX_IMAGE_FILE_SIZE_MB: 5, | ||
| DEFAULT_MAX_TOTAL_IMAGE_SIZE_MB: 20, | ||
| })) | ||
|
|
||
| import { validateImageForProcessing, readImageAsDataUrlWithBuffer } from "../../tools/helpers/imageHelpers" | ||
|
|
||
| const mockReadImageAsDataUrl = vi.mocked(readImageAsDataUrlWithBuffer) | ||
| const mockValidateImage = vi.mocked(validateImageForProcessing) | ||
|
|
||
| describe("resolveImageMentions", () => { | ||
| beforeEach(() => { | ||
| vi.clearAllMocks() | ||
| // Default: validation passes | ||
| mockValidateImage.mockResolvedValue({ isValid: true, sizeInMB: 0.1 }) | ||
| }) | ||
|
|
||
| it("should append a data URL when a local png mention is present", async () => { | ||
| const dataUrl = `data:image/png;base64,${Buffer.from("png-bytes").toString("base64")}` | ||
| mockReadImageAsDataUrl.mockResolvedValue({ dataUrl, buffer: Buffer.from("png-bytes") }) | ||
|
|
||
| const result = await resolveImageMentions({ | ||
| text: "Please look at @/assets/cat.png", | ||
| images: [], | ||
| cwd: "/workspace", | ||
| }) | ||
|
|
||
| expect(mockValidateImage).toHaveBeenCalled() | ||
| expect(mockReadImageAsDataUrl).toHaveBeenCalledWith(path.resolve("/workspace", "assets/cat.png")) | ||
| expect(result.text).toBe("Please look at @/assets/cat.png") | ||
| expect(result.images).toEqual([dataUrl]) | ||
| }) | ||
|
|
||
| it("should support gif images (matching read_file)", async () => { | ||
| const dataUrl = `data:image/gif;base64,${Buffer.from("gif-bytes").toString("base64")}` | ||
| mockReadImageAsDataUrl.mockResolvedValue({ dataUrl, buffer: Buffer.from("gif-bytes") }) | ||
|
|
||
| const result = await resolveImageMentions({ | ||
| text: "See @/animation.gif", | ||
| images: [], | ||
| cwd: "/workspace", | ||
| }) | ||
|
|
||
| expect(result.images).toEqual([dataUrl]) | ||
| }) | ||
|
|
||
| it("should support svg images (matching read_file)", async () => { | ||
| const dataUrl = `data:image/svg+xml;base64,${Buffer.from("svg-bytes").toString("base64")}` | ||
| mockReadImageAsDataUrl.mockResolvedValue({ dataUrl, buffer: Buffer.from("svg-bytes") }) | ||
|
|
||
| const result = await resolveImageMentions({ | ||
| text: "See @/icon.svg", | ||
| images: [], | ||
| cwd: "/workspace", | ||
| }) | ||
|
|
||
| expect(result.images).toEqual([dataUrl]) | ||
| }) | ||
|
|
||
| it("should ignore non-image mentions", async () => { | ||
| const result = await resolveImageMentions({ | ||
| text: "See @/src/index.ts", | ||
| images: [], | ||
| cwd: "/workspace", | ||
| }) | ||
|
|
||
| expect(mockReadImageAsDataUrl).not.toHaveBeenCalled() | ||
| expect(result.images).toEqual([]) | ||
| }) | ||
|
|
||
| it("should skip unreadable files (fail-soft)", async () => { | ||
| mockReadImageAsDataUrl.mockRejectedValue(new Error("ENOENT")) | ||
|
|
||
| const result = await resolveImageMentions({ | ||
| text: "See @/missing.webp", | ||
| images: [], | ||
| cwd: "/workspace", | ||
| }) | ||
|
|
||
| expect(result.images).toEqual([]) | ||
| }) | ||
|
|
||
| it("should respect rooIgnoreController", async () => { | ||
| const dataUrl = `data:image/jpeg;base64,${Buffer.from("jpg-bytes").toString("base64")}` | ||
| mockReadImageAsDataUrl.mockResolvedValue({ dataUrl, buffer: Buffer.from("jpg-bytes") }) | ||
| const rooIgnoreController = { | ||
| validateAccess: vi.fn().mockReturnValue(false), | ||
| } | ||
|
|
||
| const result = await resolveImageMentions({ | ||
| text: "See @/secret.jpg", | ||
| images: [], | ||
| cwd: "/workspace", | ||
| rooIgnoreController, | ||
| }) | ||
|
|
||
| expect(rooIgnoreController.validateAccess).toHaveBeenCalledWith("secret.jpg") | ||
| expect(mockReadImageAsDataUrl).not.toHaveBeenCalled() | ||
| expect(result.images).toEqual([]) | ||
| }) | ||
|
|
||
| it("should dedupe when mention repeats", async () => { | ||
| const dataUrl = `data:image/png;base64,${Buffer.from("png-bytes").toString("base64")}` | ||
| mockReadImageAsDataUrl.mockResolvedValue({ dataUrl, buffer: Buffer.from("png-bytes") }) | ||
|
|
||
| const result = await resolveImageMentions({ | ||
| text: "@/a.png and again @/a.png", | ||
| images: [], | ||
| cwd: "/workspace", | ||
| }) | ||
|
|
||
| expect(result.images).toHaveLength(1) | ||
| }) | ||
|
|
||
| it("should skip images when supportsImages is false", async () => { | ||
| const dataUrl = `data:image/png;base64,${Buffer.from("png-bytes").toString("base64")}` | ||
| mockReadImageAsDataUrl.mockResolvedValue({ dataUrl, buffer: Buffer.from("png-bytes") }) | ||
|
|
||
| const result = await resolveImageMentions({ | ||
| text: "See @/cat.png", | ||
| images: [], | ||
| cwd: "/workspace", | ||
| supportsImages: false, | ||
| }) | ||
|
|
||
| expect(mockReadImageAsDataUrl).not.toHaveBeenCalled() | ||
| expect(result.images).toEqual([]) | ||
| }) | ||
|
|
||
| it("should skip images that exceed size limits", async () => { | ||
| mockValidateImage.mockResolvedValue({ | ||
| isValid: false, | ||
| reason: "size_limit", | ||
| notice: "Image too large", | ||
| }) | ||
|
|
||
| const result = await resolveImageMentions({ | ||
| text: "See @/huge.png", | ||
| images: [], | ||
| cwd: "/workspace", | ||
| }) | ||
|
|
||
| expect(mockValidateImage).toHaveBeenCalled() | ||
| expect(mockReadImageAsDataUrl).not.toHaveBeenCalled() | ||
| expect(result.images).toEqual([]) | ||
| }) | ||
|
|
||
| it("should skip images that would exceed memory limit", async () => { | ||
| mockValidateImage.mockResolvedValue({ | ||
| isValid: false, | ||
| reason: "memory_limit", | ||
| notice: "Would exceed memory limit", | ||
| }) | ||
|
|
||
| const result = await resolveImageMentions({ | ||
| text: "See @/large.png", | ||
| images: [], | ||
| cwd: "/workspace", | ||
| }) | ||
|
|
||
| expect(result.images).toEqual([]) | ||
| }) | ||
|
|
||
| it("should pass custom size limits to validation", async () => { | ||
| const dataUrl = `data:image/png;base64,${Buffer.from("png-bytes").toString("base64")}` | ||
| mockReadImageAsDataUrl.mockResolvedValue({ dataUrl, buffer: Buffer.from("png-bytes") }) | ||
|
|
||
| await resolveImageMentions({ | ||
| text: "See @/cat.png", | ||
| images: [], | ||
| cwd: "/workspace", | ||
| maxImageFileSize: 10, | ||
| maxTotalImageSize: 50, | ||
| }) | ||
|
|
||
| expect(mockValidateImage).toHaveBeenCalledWith(expect.any(String), true, 10, 50, 0) | ||
| }) | ||
| }) | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,145 @@ | ||
| import * as path from "path" | ||
|
|
||
| import { mentionRegexGlobal, unescapeSpaces } from "../../shared/context-mentions" | ||
| import { | ||
| isSupportedImageFormat, | ||
| readImageAsDataUrlWithBuffer, | ||
| validateImageForProcessing, | ||
| ImageMemoryTracker, | ||
| DEFAULT_MAX_IMAGE_FILE_SIZE_MB, | ||
| DEFAULT_MAX_TOTAL_IMAGE_SIZE_MB, | ||
| } from "../tools/helpers/imageHelpers" | ||
|
|
||
| const MAX_IMAGES_PER_MESSAGE = 20 | ||
|
|
||
| export interface ResolveImageMentionsOptions { | ||
| text: string | ||
| images?: string[] | ||
| cwd: string | ||
| rooIgnoreController?: { validateAccess: (filePath: string) => boolean } | ||
| /** Whether the current model supports images. Defaults to true. */ | ||
| supportsImages?: boolean | ||
| /** Maximum size per image file in MB. Defaults to 5MB. */ | ||
| maxImageFileSize?: number | ||
| /** Maximum total size of all images in MB. Defaults to 20MB. */ | ||
| maxTotalImageSize?: number | ||
| } | ||
|
|
||
| export interface ResolveImageMentionsResult { | ||
| text: string | ||
| images: string[] | ||
| } | ||
|
|
||
| function isPathWithinCwd(absPath: string, cwd: string): boolean { | ||
| const rel = path.relative(cwd, absPath) | ||
| return rel !== "" && !rel.startsWith("..") && !path.isAbsolute(rel) | ||
| } | ||
|
|
||
| function dedupePreserveOrder(values: string[]): string[] { | ||
| const seen = new Set<string>() | ||
| const result: string[] = [] | ||
| for (const v of values) { | ||
| if (seen.has(v)) continue | ||
| seen.add(v) | ||
| result.push(v) | ||
| } | ||
| return result | ||
| } | ||
|
|
||
| /** | ||
| * Resolves local image file mentions like `@/path/to/image.png` found in `text` into `data:image/...;base64,...` | ||
| * and appends them to the outgoing `images` array. | ||
| * | ||
| * Behavior matches the read_file tool: | ||
| * - Supports the same image formats: png, jpg, jpeg, gif, webp, svg, bmp, ico, tiff, avif | ||
| * - Respects per-file size limits (default 5MB) | ||
| * - Respects total memory limits (default 20MB) | ||
| * - Skips images if model doesn't support them | ||
| * - Respects `.rooignore` via `rooIgnoreController.validateAccess` when provided | ||
| */ | ||
| export async function resolveImageMentions({ | ||
| text, | ||
| images, | ||
| cwd, | ||
| rooIgnoreController, | ||
| supportsImages = true, | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Fix it with Roo Code or mention @roomote and request a fix. |
||
| maxImageFileSize = DEFAULT_MAX_IMAGE_FILE_SIZE_MB, | ||
| maxTotalImageSize = DEFAULT_MAX_TOTAL_IMAGE_SIZE_MB, | ||
| }: ResolveImageMentionsOptions): Promise<ResolveImageMentionsResult> { | ||
| const existingImages = Array.isArray(images) ? images : [] | ||
| if (existingImages.length >= MAX_IMAGES_PER_MESSAGE) { | ||
| return { text, images: existingImages.slice(0, MAX_IMAGES_PER_MESSAGE) } | ||
| } | ||
|
|
||
| // If model doesn't support images, skip image processing entirely | ||
| if (!supportsImages) { | ||
| return { text, images: existingImages } | ||
| } | ||
|
|
||
| const mentions = Array.from(text.matchAll(mentionRegexGlobal)) | ||
| .map((m) => m[1]) | ||
| .filter(Boolean) | ||
| if (mentions.length === 0) { | ||
| return { text, images: existingImages } | ||
| } | ||
|
|
||
| const imageMentions = mentions.filter((mention) => { | ||
| if (!mention.startsWith("/")) return false | ||
| const relPath = unescapeSpaces(mention.slice(1)) | ||
| const ext = path.extname(relPath).toLowerCase() | ||
| return isSupportedImageFormat(ext) | ||
| }) | ||
|
|
||
| if (imageMentions.length === 0) { | ||
| return { text, images: existingImages } | ||
| } | ||
|
|
||
| const imageMemoryTracker = new ImageMemoryTracker() | ||
| const newImages: string[] = [] | ||
|
|
||
| for (const mention of imageMentions) { | ||
| if (existingImages.length + newImages.length >= MAX_IMAGES_PER_MESSAGE) { | ||
| break | ||
| } | ||
|
|
||
| const relPath = unescapeSpaces(mention.slice(1)) | ||
| const absPath = path.resolve(cwd, relPath) | ||
| if (!isPathWithinCwd(absPath, cwd)) { | ||
| continue | ||
| } | ||
|
|
||
| if (rooIgnoreController && !rooIgnoreController.validateAccess(relPath)) { | ||
| continue | ||
| } | ||
|
|
||
| // Validate image size limits (matches read_file behavior) | ||
| try { | ||
| const validationResult = await validateImageForProcessing( | ||
| absPath, | ||
| supportsImages, | ||
| maxImageFileSize, | ||
| maxTotalImageSize, | ||
| imageMemoryTracker.getTotalMemoryUsed(), | ||
| ) | ||
|
|
||
| if (!validationResult.isValid) { | ||
| // Skip this image due to size/memory limits, but continue processing others | ||
| continue | ||
| } | ||
|
|
||
| const { dataUrl } = await readImageAsDataUrlWithBuffer(absPath) | ||
| newImages.push(dataUrl) | ||
|
|
||
| // Track memory usage | ||
| if (validationResult.sizeInMB) { | ||
| imageMemoryTracker.addMemoryUsage(validationResult.sizeInMB) | ||
| } | ||
| } catch { | ||
| // Fail-soft: skip unreadable/missing files. | ||
| continue | ||
| } | ||
| } | ||
|
|
||
| const merged = dedupePreserveOrder([...existingImages, ...newImages]).slice(0, MAX_IMAGES_PER_MESSAGE) | ||
| return { text, images: merged } | ||
| } | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The constant
SUPPORTED_IMAGE_FORMATS(lines 5–17) is declared but never used. Consider removing it to keep the test file clean.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@roomote fix this
Uh oh!
There was an error while loading. Please reload this page.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Removed the unused
SUPPORTED_IMAGE_FORMATSconstant from the test file. All local checks passed.View commit | Revert commit