Would be curious your setup this was mine.
satellite_imagery_analysis_agent = create_agent(
model="claude-opus-4-6",
system_prompt="your task is to analyze satellite images"
)
response = satellite_imagery_analysis_agent.invoke({
"messages": [
{
"role": "user",
"content": "What do you see in this satellite image? https://images.unsplash.com/photo-1446776899648-aa78eefe8ed0..."
}
]
})
With this output:
# Satellite Image Analysis
I can see this image shows an *aerial/satellite view of a coastline*. Here are the key features I can identify:
## Geographic Features
- *Ocean/Sea*: A large body of deep blue water dominates a significant portion of the image
- *Coastline*: A clearly defined boundary between land and water with what appears to be a rugged or natural shoreline
- *Beach/Shore*: Light-colored sandy or rocky coastal areas visible along the water's edge
## Terrain
- *Varied topography*: The land area shows a mix of greens and browns, suggesting:
- Vegetated areas (green patches)
- Arid or bare terrain (brown/tan areas)
- *Possible cliffs or elevated terrain* along portions of the coast
## Atmospheric Conditions
- *Cloud cover*: There appear to be some clouds or haze in parts of the image
- Generally clear conditions allowing good visibility of surface features
## Notable Observations
- The color contrast between the *turquoise/shallow nearshore waters* and the *deeper blue offshore waters* suggests varying ocean depths (bathymetry)
- The coastline geometry suggests this could be a *peninsula, island, or prominent headland*
- The landscape appears relatively *semi-arid* based on the vegetation patterns
---
Note: Without precise geolocation metadata, I'm providing a general analysis based on visible features. The image appears to capture a scenic coastal region, possibly in a Mediterranean, subtropical, or tropical climate zone.
Would you like me to focus on any specific aspect of this image?