Including vision models — a minimalist approach to AI interaction
Based on Hacker News Discussion
56 Points on HN
Modern AI APIs are powerful but increasingly complex
Minimalist design with maximum capability
Seamlessly handle text and images with the same interface
Works across different LLM providers with unified API
Zero configuration required for basic usage
One function call does everything you need
from wrapper import jev
# Text completion
response = jev("What is machine learning?")
# Vision model - image understanding
response = jev("Describe this image", image="photo.jpg")
# That's it. One function for everything.
One function handles text, vision, and model selection automatically
Simplicity is the ultimate sophistication