Asset library
← Asset library

Skill / Build

Ideogram Image Generation

Read the actual skill instructions, usage conditions, and source definitions.

Source availableOpen source ↗

Ideogram Image Generation Skill

> Audience: Designers, resume builders, portfolio writers, and career-storytelling workflows in breeze-man. > Purpose: Generate local images with Ideogram 4 FP8 for visual concepts, hero images, portfolio graphics, and document assets.

This skill uses the official ideogram4 inference package and the gated Hugging Face model ideogram-ai/ideogram-4-fp8.

Local Paths

  • Model snapshot: breeze-man/model/ideogram-4-fp8
  • Hugging Face cache: breeze-man/model/.hf-cache
  • Generated images: prefer breeze-man/output/<project>/images/
  • Helper scripts: breeze-man/skillset/ideogram-image-generation/scripts/

The workspace .gitignore already excludes model/ directories and *.safetensors, so downloaded weights should stay out of source control.

One-Time Setup

  • Accept the Hugging Face gate for ideogram-ai/ideogram-4-fp8.
  • Authenticate with Hugging Face:
hf auth login

or:

export HF_TOKEN="hf_..."
  • Create a Python 3.11 environment and install the official inference package:
cd breeze-man/skillset/ideogram-image-generation
uv venv --python python3.11 .venv
. .venv/bin/activate
uv pip install -r requirements.txt
  • Download the model into breeze-man/model/:
python scripts/download_model.py

Generate An Image

Basic local generation:

cd breeze-man/skillset/ideogram-image-generation
. .venv/bin/activate
python scripts/generate_image.py \
  --prompt "editorial portrait of a senior AI product leader, cinematic lighting, confident but approachable" \
  --output ../../output/job-hup/images/ai_leader_portrait.png \
  --width 1024 \
  --height 1024 \
  --seed 42

Higher-quality official prompt expansion, when IDEOGRAM_API_KEY is available:

IDEOGRAM_API_KEY="..." \
python scripts/generate_image.py \
  --magic-prompt \
  --prompt "premium executive resume cover image for responsible AI leadership" \
  --output ../../output/job-hup/images/responsible_ai_cover.png \
  --width 1536 \
  --height 1024

Operating Notes

  • FP8 is the right local choice for Apple Silicon, CPU, and CUDA. NF4 is CUDA-only.
  • Supported dimensions are multiples of 16 from 256 to 2048, with aspect ratios up to 6:1.
  • V4_QUALITY_48 gives best quality, V4_DEFAULT_20 is a faster default, and V4_TURBO_12 is for drafts.
  • Without Hive moderation keys, the helper will not run external safety screening. Use conservative, professional prompts for career and public-facing assets.
  • The Ideogram 4 license is non-commercial. Confirm usage rights before using generated assets in commercial materials.
Source & reuse information

No additional reuse license granted by this catalogue. Consult the source or request permission.

Source: skills/ideogram-image-generation/skill.md

Asset ID: skill-ideogram-image-generation

Content fingerprint: 4d33e3f802169567e1026b6e8eef397b7b424828c5053463cecd4e0307d07285

The fingerprint records source identity, not the date of publication or independent verification of its claims.

Start a conversation

Tell me what you have in mind. Prepare a brief to copy or download; nothing is sent or stored by this site.

Open Kent’s GitHub profile ↗

About Kent & experience

I work across AI systems, research, and engineering. Autumn Memo began during my research exchange in Randall Davis’s MIT-CSAIL lab in 2016.

Explore agent workflow design, evaluation research, and product engineering through the artifacts below, alongside personal stories and illustrated notes.