Feature

API, SDK, CLIsdk 0.0.36

Image review and alt text

Score generated images for quality issues and produce descriptive alt text, from the API, SDK, and CLI.

Two new image analysis calls. review scores an image for quality issues, and alt writes short, descriptive alt text. Both work on any image, whether Mynth generated it or not.

import Mynth from "@mynthio/sdk";

const mynth = new Mynth();

const review = await mynth.image.review({ url: "https://..." });
const { alt } = await mynth.image.alt({ url: "https://..." });

Both are CLI commands too, mynth image review and mynth image alt. The SDK also ships webhook helpers for Next.js and TanStack Start.