Photon · Models
Gemma
Google open multimodal models in two sizes, verified on H100.
Quickstart · pip install moondream
Call Gemma in a few lines.
python
# pip install moondream import moondream as md from PIL import Image # Or google/gemma-4-E4B-it for the larger variant model = md.photon("google/gemma-4-E2B-it") 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