qwen-image-lite

Edits images from text instructions using the Qwen Image Edit API via Pixazo.

Updated May 2, 2026
One-click install
npx skills add https://github.com/Pixazo-AI/skills --skill qwen-image-lite-pixazo-ai
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: qwen-image-lite
Source: https://github.com/Pixazo-AI/skills/tree/main/skills/qwen-image-lite
Command: npx skills add https://github.com/Pixazo-AI/skills --skill qwen-image-lite-pixazo-ai

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? Editing images with text instructions normally requires local model setup or manual tooling; this Skill lets an AI agent call the Qwen Image Edit API (Alibaba, Lightning 4-step) through the Pixazo gateway to edit a source image from a plain-language prompt. ## Core Features & Use Cases - Instruction-based image editing: Send a source image URL plus a text prompt (e.g., add an object, restyle) and receive the edited image synchronously. - API key management: Guides the agent to find or save the Pixazo API key once to ~/.pixazo/api-key so the user is never asked twice. - Ready-made request templates: Provides curl, Python, and Node.js examples with parameters like prompt, negative_prompt, seed, num_images, and output_format, plus an error-handling table for 401/402/429/5xx responses. - Use Case: A user uploads a product photo and asks to "add a red party hat on top, keep everything else identical" — the agent builds the request, calls the endpoint, and shows the resulting image URL inline. ## Quick Start Ask the agent to edit an image with Qwen Image Edit, for example: "Use Qwen Image Edit to add sunglasses to the person in this photo at https://example.com/photo.png."

Frequently Asked Questions about qwen-image-lite

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I edit an image with a text prompt using Qwen Image Edit?▼

Send a POST request to the Pixazo gateway endpoint with your source image URL and a text instruction in the prompt field. The API returns the edited image synchronously as a JSON response containing an image URL.

What API key do I need for the Pixazo image editing API?▼

You need a free Pixazo API key from https://api-console.pixazo.ai/api_keys. The skill checks the PIXAZO_API_KEY environment variable first, then ~/.pixazo/api-key, and saves the key so you only provide it once.

Does Qwen Image Edit support text-to-image generation or only editing?▼

This skill exposes the image-to-image editing operation, which requires a source image URL plus a text instruction. For pure text-to-image generation, use one of the other Pixazo image skills such as qwen-image or seedream.

Why does the Pixazo API return a 401 or 402 error?▼

A 401 means the API key is missing or invalid, so generate a fresh key at the Pixazo console. A 402 means the account is out of credits and needs a top-up at the Pixazo dashboard.

Can I control seed and number of output images in Qwen Image Edit?▼

Yes, the request accepts a seed parameter for reproducibility (default 42) and num_images for 1-4 variations. You can also set negative_prompt, guidance_scale, and output_format such as png.