LLM 0.32a0 is a major backwards-compatible refactor
29th April 2026
I just released LLM 0.32a0, an alpha release of my LLM Python library and CLI tool for accessing LLMs, with some consequential changes that I’ve been working towards for quite a while.
Previous versions of LLM modeled the world in terms of prompts and responses. Send the model a text prompt, get back a text response.
import llm mo...
This update to LLM reflects a broader shift in how language models are being integrated into software ecosystems. The move from simple text prompts to structured message sequences and multi-type streaming outputs mirrors the evolution of LLMs themselves, which are increasingly capable of handling complex, multi-modal interactions. The author’s decision to prioritize flexibility—such as allowing users to serialize responses without SQLite—suggests a recognition that developers need tools that ada...
