Génération d'images NVIDIA FLUX

VérifiéSûr

Génération et édition d'images avec les modèles NVIDIA FLUX. Supporte la création texte-image et l'édition d'images existantes.

Spar Skills Guide Bot
ContenuDébutant
3006/08/2026
Claude Code
#nvidia#image-generation#flux#text-to-image#image-editing

Recommandé pour

Notre avis

Génère et édite des images à l'aide des modèles FLUX de NVIDIA (texte vers image et édition d'images) via un script en ligne de commande.

Points forts

  • Interface en ligne de commande simple pour la génération et l'édition
  • Plusieurs modèles FLUX pour arbitrer entre vitesse et qualité
  • Rapports d'aspect, dimensions et graines configurables pour des résultats reproductibles
  • Produit un chemin MEDIA que les interfaces de chat peuvent afficher directement

Limites

  • Nécessite un environnement Python avec les dépendances et un accès à l'API NVIDIA
  • Limité aux trois modèles FLUX; pas de support d'autres modèles d'image
  • L'édition d'images repose uniquement sur des instructions textuelles, sans masquage manuel ni contrôle de région
Quand l'utiliser

Lorsque l'utilisateur a besoin de générer une nouvelle image à partir d'un texte ou d'éditer une image existante avec les modèles FLUX.

Quand l'éviter

Lorsque l'utilisateur a besoin d'une édition d'image précise (par exemple, suppression d'objet avec masque) ou d'un autre modèle que NVIDIA FLUX.

Analyse de sécurité

Sûr
Score qualité92/100

The skill provides instructions for running Python scripts to generate and edit images via NVIDIA's API. No destructive, obfuscated, or exfiltration actions are present. Commands are straightforward and only involve local execution with user-provided inputs. The embedded API key in the script is a configuration detail and not part of the skill instructions.

Aucun point d'attention détecté

Exemples

Generate a cat in space
Generate a cute cat in space
Edit an image's background
Make the background of this image a sunset
Generate a wide 16:9 beach image
Generate a panoramic beach view in 16:9 aspect ratio

name: nvidia-image-gen version: 1.0.0 description: Generate and edit images using NVIDIA FLUX models. Use when user asks to generate images, create pictures, edit photos, or modify existing images with AI. Supports text-to-image generation and image editing with text prompts.

NVIDIA Image Generation

Generate and edit images using NVIDIA's FLUX models.

Models

| Model | Use Case | Speed | Quality | |-------|----------|-------|---------| | dev | High-quality text-to-image | Normal | Best | | schnell | Fast text-to-image | Fast | Good | | kontext | Image editing | Normal | Best |

Quick Start

# Generate an image
python scripts/generate.py "A cute cat in space"

# Edit an existing image
python scripts/generate.py "Add sunglasses" -i photo.jpg -o edited.png

Parameters

Text-to-Image (dev/schnell)

| Parameter | Short | Default | Description | |-----------|-------|---------|-------------| | prompt | | (required) | Text description | | -o, --output | | output.png | Output file path | | --width | | 1024 | Output width in pixels | | --height | | 1024 | Output height in pixels | | --aspect-ratio | -ar | 1:1 | Aspect ratio preset | | --steps | -s | 30 | Diffusion steps | | --seed | | 0 | Random seed (0=random) | | --model | -m | auto | Model selection |

Image Editing (kontext)

| Parameter | Short | Default | Description | |-----------|-------|---------|-------------| | prompt | | (required) | Edit instruction | | -i, --input | | (required) | Input image path | | -o, --output | | output.png | Output file path | | --steps | -s | 30 | Diffusion steps | | --cfg | | 3.5 | Guidance scale | | --seed | | 0 | Random seed |

Supported Aspect Ratios

| Ratio | Resolution | |-------|------------| | 1:1 | 1024×1024 | | 16:9 | 1344×768 | | 9:16 | 768×1344 | | 4:3 | 1216×832 | | 3:4 | 832×1216 |

Examples

Basic Generation

python scripts/generate.py "A mountain landscape at sunset"

Wide Format (16:9)

python scripts/generate.py "A panoramic beach view" -ar 16:9

Portrait Mode (9:16)

python scripts/generate.py "A professional headshot" -ar 9:16

Custom Size

python scripts/generate.py "A banner image" --width 1344 --height 768

Fast Generation

python scripts/generate.py "Quick sketch of a robot" -m schnell

Edit an Image

python scripts/generate.py "Make the background a sunset" -i input.jpg -o output.png

Reproducible Results

python scripts/generate.py "A robot" --seed 12345

Output

The script outputs MEDIA:/path/to/image.png which can be sent directly to chat.

API Key

The API key is embedded in the script. To use a different key, set the NVIDIA_API_KEY environment variable.

Skills similaires