SShortSingh.
Back to feed

Cloudinary Launches Image Generation API Supporting Multiple AI Models

0
·1 views

Cloudinary has introduced an Image Generation API that allows developers to create images from text prompts using multiple AI model families, including Flux, GPT-Image, Ideogram, Recraft, and Nano-Banana. The API integrates directly with Cloudinary's existing media management infrastructure, automatically saving generated images as managed assets rather than returning temporary outputs. Developers can switch between model families without altering their core application code, making it easier to experiment with different visual styles through a single integration. Generated assets are stored in the user's Cloudinary account and can be resized, optimized, cropped, and delivered via Cloudinary's CDN. The API can be accessed using Python with HTTP Basic Auth, and setup requires installing the image generation add-on through the Cloudinary console.

Read the full story at DEV Community

This is an AI-generated summary. ShortSingh links to the original source for the complete article.

Discussion (0)

Log in to join the discussion and vote.

Log in

Related stories

0
ProgrammingDEV Community ·

chat.nvim Adds Scheduled Tasks to Give AI Assistants a Sense of Time

A new scheduled task feature has been added to chat.nvim, a Neovim plugin, to address a core limitation of most AI assistants — their inability to act proactively at a future point in time. The feature allows users to schedule reminders or tasks using relative delays, absolute timestamps, or recurring intervals, all of which are internally converted to Unix timestamps for a unified scheduling model. Rather than polling, the system uses Neovim's built-in libuv library to create one independent timer per task, waking only when due to avoid unnecessary CPU usage. A drift-correction algorithm ensures recurring tasks maintain their original rhythm even after Neovim restarts, and a timer-sharding workaround handles durations beyond libuv's 24.8-day hard limit. When a scheduled task triggers, it injects a message into the active session so the AI processes it as if the user had just sent it.

0
ProgrammingDEV Community ·

Why Multi-Model AI Apps Need Workflow-Level API Monitoring, Not Just Uptime Checks

Applications using multiple AI models — such as GPT, Claude, Gemini, and DeepSeek — face growing reliability challenges as they scale across different workflows. Traditional API monitoring tracks uptime and error codes, but an AI request can return a successful HTTP response while still failing the actual product workflow. Experts recommend monitoring metrics specific to each use case, including latency breakdowns, schema validity, fallback trigger rates, and cost per task, rather than tracking model performance in aggregate. Latency, for instance, should be measured across multiple stages — from time-to-first-token to full end-to-end workflow time — since retrieval, retries, and tool calls all affect the user experience. Logging every fallback event with its cause is also highlighted as critical, so teams can identify when a primary model is consistently underperforming and needs to be replaced.

0
ProgrammingDEV Community ·

MDConvertHub Launches Free Browser-Based Toolkit for Markdown Conversion

A developer frustrated by switching between multiple websites for Markdown tasks has launched MDConvertHub, a free browser-based platform consolidating common Markdown utilities in one place. The tool currently offers conversions between Markdown, PDF, Word, DOCX, and HTML, along with a Markdown editor and README generator. All processing runs directly in the browser, requiring no account creation, software installation, or file uploads to a server. The platform is designed for developers, technical writers, students, and open-source contributors working with Markdown regularly. Additional tools such as a Markdown formatter, diff checker, and lint checker are already in the pipeline as the project continues to grow.

0
ProgrammingDEV Community ·

How to Integrate Stripe Billing Into a Next.js SaaS App Step by Step

A technical guide published on DEV Community outlines how developers can integrate Stripe's billing system into a Next.js application to build a functional B2B SaaS product. The article argues that using a pre-built Next.js boilerplate with authentication, database, and API routes already configured can reduce development time to under a day. Stripe's core objects — including Customers, Products, Prices, Subscriptions, and Payment Methods — must be understood before beginning integration. Developers are advised to set up multiple pricing plans and handle webhooks, database migrations, and email notifications as part of a complete billing workflow. The guide positions the Next.js and Stripe combination as a scalable solution capable of supporting growth from early users to tens of thousands of customers.