PulseAugur
EN
LIVE 16:46:02

Anthropic Claude CLI update breaks vLLM local use; patch released

Anthropic's latest Claude CLI update, version 2.1.154, has introduced new message roles that are incompatible with the vLLM framework. This incompatibility prevents local use of Claude models with vLLM. A community-developed patch for vLLM has been proposed to reintroduce support for these new roles, specifically addressing the "ctx", "msg", and "system" types. AI

IMPACT Compatibility issues between model interfaces and inference engines can hinder local development and deployment of AI models.

RANK_REASON A software update to a specific product caused a compatibility issue with a third-party tool, requiring a patch.

Read on r/LocalLLaMA →

AI-generated summary · Google Gemini · from 1 sources. How we write summaries →

COVERAGE [1]

  1. r/LocalLLaMA TIER_1 English(EN) · /u/Vicar_of_Wibbly ·

    Claude cli >= 2.1.154 breaks local use with vLLM by introducing "ctx", "msg" and "system" roles for API messages. This 1-line patch to vLLM fixes it.

    <!-- SC_OFF --><div class="md"><pre><code>diff --git a/vllm/entrypoints/anthropic/protocol.py b/vllm/entrypoints/anthropic/protocol.py index 3ebc17117..2d5726d73 100644 --- a/vllm/entrypoints/anthropic/protocol.py +++ b/vllm/entrypoints/anthropic/protocol.py @@ -65,7 +65,7 @@ cla…