llm 0.32rc2

Simon Willison's Weblog Simon Willison's Weblog

Release: https://github.com/simonw/llm/releases/tag/0.32rc2">llm 0.32rc2


Hot on the heels of https://simonwillison.net/2026/Jul/30/llm-rc1/">RC1, this fixes a dependency issue and also adds two neat new features:





The llm openai endpoint command is really cool.

I got frustrated at the lack of an obvious CLI tool for trying out prompts against arbitrary OpenAI Chat Completions imitation endpoints, so I decided to add that to LLM itself.


You don't even have to install LLM to use this.

Here's a uvx one-liner for running a prompt - with tools - against an https://lmstudio.ai">LM Studio local model:


uvx --pre llm openai endpoint http://127.0.0.1:1234/v1 \
T llm_version -T llm_time --td \
-m google/gemma-4-31b 'what is the current LLM version?

And the time?'


https://github.com/simonw/llm/pull/1568#issuecomment-5136163707">Output here.




Tags: https://simonwillison.net/tags/llm">llm, https://simonwillison.net/tags/uv">uv, https://simonwillison.net/tags/lm-studio">lm-studio

Read full article at Simon Willison's Weblog →