diff --git a/README.md b/README.md
index a3e0f349f..134feab6c 100644
--- a/README.md
+++ b/README.md
@@ -154,7 +154,22 @@ with user():
with assistant():
lm += gen("fact")
```
-
+
+
+14. **Multi-model support.**
+```python
+from guidance import image
+
+gemini = models.VertexAI("gemini-pro-vision")
+
+with user():
+ lm = gemini + "What is this a picture of?" + image("longs_peak.jpg")
+
+with assistant():
+ lm += gen("answer")
+```
+
+
## Table of Contents