llm-chat-completions-server 0.1a0
Named practitioner synthesis
#1085
- Topic
- unassigned (set during synthesis)
- First seen
- 2026-07-31 08:04:27
- Last seen
- 2026-07-31 08:04:27
Source raw items (1)
- Blog / Newsletter2026-07-31 08:04:23llm-chat-completions-server 0.1a0
<p><strong>Release:</strong> <a href="https://github.com/simonw/llm-chat-completions-server/releases/tag/0.1a0">llm-chat-completions-server 0.1a0</a></p> <p>A key goal of the new content-addressable logs <a href="https://simonwillison.net/2026/Jul/30/llm-rc1/">in LLM 0.32rc1</a> was being able to support OpenAI Chat Completion style requests where each incoming message extends the previous conversation, like this:</p> <pre><code>curl http://localhost:8002/v1/chat/completions \ -H 'Content-Type: application/json' \ -d '{ "model": "qwen3.5-4b", "messages": [ {"role": "user", "content": "Capital of France?"}, {"role": "assistant", "content": "Paris."}, {"role": "user", "content": "Germany?"} ] }' </code></pre> <p>Here the conversation state is tracked by the client, so each of these requests gets longer and longer. The new schema design in LLM is designed to de-duplicate these using hashes of the individual message parts.</p> <p>To test that out