Image Agent
Send an image URL to a Together vision model and stream the response.
Code
import os
from agno.agent import Agent
from agno.media import Image
from agno.models.together import Together
agent = Agent(
model=Together(id=os.environ["TOGETHER_MODEL_ID"]),
markdown=True,
)
agent.print_response(
"Tell me about this image",
images=[
Image(
url="https://upload.wikimedia.org/wikipedia/commons/0/0c/GoldenGateBridge-001.jpg"
)
],
stream=True,
)Set TOGETHER_MODEL_ID to a current model that accepts image input. See the Together vision guide and serverless catalog.
Usage
Set up your virtual environment
uv venv --python 3.12
source .venv/bin/activateSet your API key
export TOGETHER_API_KEY=xxx
export TOGETHER_MODEL_ID=your-model-idInstall dependencies
uv pip install -U openai agnoRun Agent
Save the code above as image_agent.py, then run:
python image_agent.py