llm 0.36
llm 0.36 adds GPT-6 Sol and Luna IDs and blocks chat for single-turn models.
Simon Willison released llm 0.36, adding OpenAI model identifiers gpt-6-sol for GPT-6 Sol and gpt-6-luna for GPT-6 Luna. Plugins can declare supports_conversation as false; the tool then raises ConversationNotSupported and refuses chat sessions that include assistant or tool history. The first plugin using the flag is llm-typesafe. Reasoning traces in Markdown log output are now wrapped in HTML details and summary tags, alongside bug fixes from five contributors.
- Adds model IDs gpt-6-sol and gpt-6-luna for OpenAI GPT-6 variants
- Plugins may set supports_conversation to false for single-turn models
- llm chat rejects those models before a session starts
- Reasoning traces in llm logs are wrapped in HTML details tags
Release: llm 0.36 New OpenAI models: gpt-6-sol for GPT-6 Sol and gpt-6-luna for GPT-6 Luna . #1702 Model plugins can now declare supports_conversation = False for models that only accept single-turn prompts. LLM raises llm.ConversationNotSupported when these models receive assistant or tool history, and llm chat rejects them before starting a session. See Models that do not support conversations . The first plugin to use this is llm-typesafe . #1692 Reasoning traces in the Markdown output of llm logs are now wrapped in <details><summary> tags. #1701 Plus bug fixes from five new contributors . Tags: openai , llm
This source does not provide full text. Read it at simonwillison.net.