When I connect my Anthropic/C API key and try using the test Prompt in UI Vision, I get the below E352 error. After further investigation, I was able to find that the claude-3-5-sonnet-20241022 model that UI Vision uses has been deprecated. Looking at the GitHub Repro, I see UI Vision uses a static variable for claude-3-5-sonnet-20241022. Can UI Vision be updated to use Claude Sonnet 4 or Claude Sonnet 3.7?
const mk = (list: string[]): Record<string, string> => list.reduce((prev, key) => {
prev[key] = key;
return prev
}, {} as Record<string, string>)
export const APP_STATUS = mk([
'NORMAL',
'INSPECTOR',
'RECORDER',
'PLAYER'
])
export const INSPECTOR_STATUS = mk([
'PENDING',
'INSPECTING',
'STOPPED'
])
export const RECORDER_STATUS = mk([
This file has been truncated. show original
import Anthropic from '@anthropic-ai/sdk'
import { MessageParam } from '@anthropic-ai/sdk/resources'
// import sharp, { Metadata } from 'sharp'
import { ANTHROPIC } from '@/common/constant'
import { Jimp } from 'jimp'
interface Coordinates {
coords: Array<{ x: number; y: number }>
isSinglePoint?: boolean
}
type ScaleImageIfNeededResult = {
buffer: ArrayBuffer
scaleFactor: number
originalWidth: number
originalHeight: number
}
type ProcessImageResult = {
This file has been truncated. show original
admin
October 20, 2025, 11:54am
2
Thanks again for reporting this issue! It is fixed with the new V9.5.5 . Ui.Vision uses the latest available Claude models now.
TTimo
January 22, 2026, 8:43pm
3
How do I get the latest version on Firefox?
Ui.Vision – Get this Extension for 🦊 Firefox (en-US)
Offers 9.5.3, which is affected by this bug.
TTimo
January 22, 2026, 9:25pm
4
admin
January 22, 2026, 10:43pm
5
Hello, Ui.Vision for Firefox, Ui.Vision for Edge and the source code itself will be updated soon (within 1-2 weeks).
TTimo
January 23, 2026, 12:14am
6
Awesome! Thank you. I was able to patch the 9.5.3 source to get the AI chat features working again, but I’ll be looking forward to the new release.