Photon · Models
Qwen 3
Open multimodal models in four sizes, compiled through the same path.
Quickstart · pip install moondream
Call Qwen 3 in a few lines.
python
# pip install moondream import moondream as md from PIL import Image # Any Qwen 3 size works: Qwen/Qwen3.5-0.8B through Qwen/Qwen3.5-9B, # and Qwen/Qwen3.6-0.8B model = md.photon("Qwen/Qwen3.5-4B") image = Image.open("photo.jpg") caption = model.caption(image)["caption"] print("Caption:", caption) answer = model.query(image, "What's in this image?")["answer"] print("Answer:", answer)
Full API reference — docs.moondream.ai/running-locally
Runs on
| Model | Chip | Tested hardware | Since | Last verified | Benchmark |
|---|---|---|---|---|---|
| Qwen 3.5 0.8B | H100 | H100 SXM 80GB | v2.0 | Aug 3, 2026 | Results |
| Qwen 3.5 2B | H100 | H100 SXM 80GB | v2.0 | Aug 3, 2026 | Results |
| Qwen 3.5 4B | H100 | H100 SXM 80GB | v2.0 | Aug 3, 2026 | Results |
| Qwen 3.5 9B | H100 | H100 SXM 80GB | v2.0 | Aug 3, 2026 | Results |
| Qwen 3.6 0.8B | H100 | H100 SXM 80GB | v2.0 | Aug 4, 2026 | — |
Run Qwen 3 with Photon
Install the SDK and pick any listed model.
$pip install moondream