Reference
Remy Reference/agent/upscaleImage
?

upscaleImage

Increase the resolution of an image using AI upscaling.
mindstudio.upscaleImage({ imageUrl, targetResolution, engine }) → Result

Increases an image's resolution with AI upscaling — for enlarging a small source without the softness of a plain resize.

Parameters
imageUrl
string
RequiredURL of the image to upscale
targetResolution
string
RequiredTarget output resolution
2k4k8k
engine
string
RequiredUpscaling engine quality tier
standardpro
Call from a method
import { mindstudio } from '@mindstudio-ai/agent';

const result = await mindstudio.upscaleImage({
  imageUrl: /* ... */,
  targetResolution: /* ... */,
  engine: /* ... */
});