feat!: remove LeMUR support - #172
Merged
Merged
Conversation
BREAKING CHANGE: the LeMUR API has been shut down, so `client.lemur`, `LemurService`, and all Lemur request/response types are removed. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
ccampbell-aai
force-pushed
the
ccampbell/remove-lemur
branch
from
August 27, 2026 21:35
d818058 to
58d00b8
Compare
ccampbell-aai
marked this pull request as ready for review
August 27, 2026 21:47
jhazenaai
approved these changes
Aug 28, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Remove LeMUR support
Closes #171.
The LeMUR API has been shut down —
/lemur/v3/generate/*and/lemur/v3/{id}now answer 404 — and the Python SDK already removed its LeMUR support, so the two official SDKs disagreed with each other. This brings the Node SDK in line by removing LeMUR entirely.Changes
LemurService(src/services/lemur/) and theclient.lemurproperty.src/types/openapi.generated.tsand the deprecated Lemur aliases fromsrc/types/deprecated.ts.Historical CHANGELOG entries and the incidental "Lemur" example strings in
keyterms_promptsamples are intentionally left alone.Breaking change
client.lemur,LemurService, and every Lemur type disappear from the public API. Ships as 4.37.0: the removed surface has been non-functional server-side (404) for some time, so this is treated as a minor rather than a major.For LeMUR-style workloads, the replacement is the LLM Gateway (
llm-gateway.assemblyai.com/v1/chat/completions) — note it takes text rather thantranscript_ids, so callers fetch the transcript text themselves.Verification
lemuris clean apart from the intentional leftovers above.pnpm lint(eslint, tsc, prettier, publint) andpnpm buildpass.pnpm test:unit: 218 passed, 3 failed — the 3 failures are theruntime_env=Node/user-agent assertions intests/unit/utils.test.ts, which fail identically on pristinemainunder Node 26 (Node now ships a globalnavigator.userAgent, short-circuiting the guard insrc/utils/userAgent.ts). Unrelated to this change.🤖 Generated with Claude Code