Skip to content

feat(otel): emit the gen_ai.client.operation.exception event on failed LLM calls - #32655

Merged
yucheng-berri merged 4 commits into
litellm_internal_stagingfrom
litellm_otel_genai_operation_exception_event
Jul 10, 2026
Merged

feat(otel): emit the gen_ai.client.operation.exception event on failed LLM calls#32655
yucheng-berri merged 4 commits into
litellm_internal_stagingfrom
litellm_otel_genai_operation_exception_event

Conversation

@yassin-berriai

@yassin-berriai yassin-berriai commented Jul 9, 2026

Copy link
Copy Markdown
Contributor

Relevant issues

Linear ticket

Resolves LIT-4308

Pre-Submission checklist

Please complete all items before asking a LiteLLM maintainer to review your PR

  • I have added meaningful tests
  • My PR passes all CI/CD checks (e.g., lint, format, unit tests)
  • My PR's scope is as isolated as possible; it only solves 1 specific problem
  • I have received a Greptile Confidence Score of at least 4/5 before requesting a maintainer review (Greptile reviews automatically once the PR is opened; only comment @greptileai to re-request a review after pushing changes)

Delays in PR merge?

If you're seeing a delay in your PR being merged, ping the LiteLLM Team on Slack (#pr-review).

Screenshots / Proof of Fix

Both runs use the same config and the same real OpenAI call; the request is deliberately invalid (max_tokens: -5) so OpenAI returns a real 400 that litellm maps to BadRequestError. A second, successful call confirms no event is emitted on success

# otel_events_config.yaml
model_list:
  - model_name: gpt-4o-mini
    litellm_params:
      model: openai/gpt-4o-mini
      api_key: os.environ/OPENAI_API_KEY

litellm_settings:
  callbacks: ["otel"]

general_settings:
  master_key: sk-1234
export LITELLM_OTEL_V2=true
export LITELLM_OTEL_INTEGRATION_ENABLE_EVENTS=true
export OTEL_EXPORTER=console
python litellm/proxy/proxy_cli.py --config otel_events_config.yaml --port 4118 2>&1 | tee proxy.log

Before (at 60729f733e)

curl -s -X POST http://127.0.0.1:4118/v1/chat/completions \
  -H 'Content-Type: application/json' -H 'Authorization: Bearer sk-1234' \
  -d '{"model":"gpt-4o-mini","messages":[{"role":"user","content":"hi"}],"max_tokens":-5}'
{"error":{"message":"litellm.BadRequestError: OpenAIException - Invalid 'max_tokens': integer below minimum value. Expected a value >= 1, but got -5 instead.. Received Model Group=gpt-4o-mini\nAvailable Model Group Fallbacks=None","type":"invalid_request_error","param":"max_tokens","code":"400"}}
grep -c "gen_ai.client.operation.exception" proxy.log   # -> 0
grep -c '"observed_timestamp"' proxy.log                # -> 0   (no logs-signal records at all)
grep -c '"exception.stacktrace"' proxy.log              # -> 0

The failed span carries only error.type, error.message, a generic exception span event with no stacktrace, and the stacktrace under the vendor key litellm.provider.error.stack_trace. Nothing named gen_ai.* describes the failure

After (at 5b436b57a8)

Same curl, plus a successful call:

curl -s -X POST http://127.0.0.1:4118/v1/chat/completions \
  -H 'Content-Type: application/json' -H 'Authorization: Bearer sk-1234' \
  -d '{"model":"gpt-4o-mini","messages":[{"role":"user","content":"say ok"}],"max_tokens":5}'
{"id":"chatcmpl-DznKgEbd8Oy1vibxtWfdO6OejqClx","model":"gpt-4o-mini","object":"chat.completion","choices":[{"finish_reason":"stop","index":0,"message":{"content":"OK","role":"assistant"}}]}
grep -c "gen_ai.client.operation.exception" proxy.log   # -> 1   (the failure only; the success emits none)

The emitted log record, correlated to the failed LLM span:

{
  "event.name": "gen_ai.client.operation.exception",
  "severity_number": "<SeverityNumber.WARN: 13>",
  "exception.type": "BadRequestError",
  "exception.message": "litellm.BadRequestError: OpenAIException - Invalid 'max_tokens': integer below minimum val...",
  "exception.stacktrace": "  File \"/Users/.../litellm/main.py\", line ...",
  "trace_id": "0x21adc5aff4773c29b66e765c620625ae",
  "span_id": "0x40fc385c20eaf0a2"
}

The span_id above resolves to the failed chat gpt-4o-mini span in the same run, whose span-side surface is unchanged:

MATCHED span: chat gpt-4o-mini status: ERROR
  span error.type: BadRequestError
  span error.message present: True
  span litellm.provider.error.* keys: ['litellm.provider.error.code', 'litellm.provider.error.stack_trace', 'litellm.provider.error.llm_provider']
  span events (unchanged): ['exception']

Independent end-to-end verification (screen recording, at 5b436b57a8)

Verified independently on a fresh checkout of this branch, making a real call to api.openai.com with a deliberately-bogus OPENAI_API_KEY (sk-proj-invalid0000000000) so OpenAI returns a genuine 401 that litellm maps to AuthenticationError; nothing is mocked. Same config as above, same failing curl, run twice: once with LITELLM_OTEL_INTEGRATION_ENABLE_EVENTS=true and once with it unset

With the flag on, the failure emits exactly one gen_ai.client.operation.exception log record at severity WARN (13) carrying exception.type (AuthenticationError), exception.message, and exception.stacktrace, and its trace_id / span_id match the failed chat gpt-4o-mini ERROR span in the same run (trace_id 0x0ff2b15a85add046d44aafc36cae3cae, span_id 0x66a99bfc87c78d2b). With the flag unset the identical 401 emits zero such records, while the span-side surface (error.type, error.message, the exception span event, and the litellm.provider.error.* keys) stays unchanged across both runs

The console log records reproduced above were captured from that independent run; a terminal screen recording of the whole flow (proxy launch, both curls, resulting log records) is archived internally and can be attached on request

Type

🆕 New Feature

Changes

The GenAI semantic conventions define failures of a GenAI client operation as a log-based event named gen_ai.client.operation.exception, recorded at severity WARN and carrying exception.type, exception.message, and exception.stacktrace, correlated to the failed span through the trace and span ids. OTel v2 never emitted it. A failed LLM call produced the error.* span attributes (whose error.message is deprecated upstream), a generic exception span event with no stacktrace, and the stacktrace only under the vendor key litellm.provider.error.stack_trace; nothing in the gen_ai.* namespace described the failure

This adds the logs pipeline the event needs, mirroring the existing metrics plumbing: build_log_exporter selects console, OTLP/HTTP, OTLP/gRPC, or in-memory from the same exporter kind the other signals use, build_logger_provider attaches a Simple processor for console and in-memory exporters and a Batch processor otherwise, and resolve_logger_provider reuses an operator-configured LoggerProvider global so the events land wherever the operator's other logs land. An explicit NoOpLoggerProvider global is treated as an opt-out and builds no recorder at all, so no event is ever constructed

Emission is gated on the enable_events config flag (LITELLM_OTEL_INTEGRATION_ENABLE_EVENTS), which until now was defined on OpenTelemetryV2Config but consumed nowhere, and is scoped to LLM_CALL spans since the event describes a GenAI client operation; a failed guardrail or service span keeps its span-side error surface and records no event. exception.stacktrace is omitted when the payload carries no traceback

The existing span-side error surface stays exactly as it is, so consumers reading error.type, error.message, the exception span event, or the litellm.provider.error.* detail keys are unaffected. Teams that want to move off the deprecated error.message attribute now have a spec-compliant signal to read instead

Link to Devin session: https://app.devin.ai/sessions/a6eb6a9987ce403da9756be9dba004d6

@CLAassistant

Copy link
Copy Markdown

CLA assistant check
Thank you for your submission! We really appreciate it. Like many open source projects, we ask that you sign our Contributor License Agreement before we can accept your contribution.
You have signed the CLA already but the status is still pending? Let us recheck it.

@greptile-apps

greptile-apps Bot commented Jul 9, 2026

Copy link
Copy Markdown
Contributor

Greptile Summary

This PR implements the gen_ai.client.operation.exception log-based event from the GenAI semantic conventions, emitted at severity WARN with the exception.* attribute trio and correlated to the failed span via trace/span IDs. The feature is gated behind LITELLM_OTEL_INTEGRATION_ENABLE_EVENTS (defaults off), and the existing span-side error surface is unchanged.

  • plumbing/events.py introduces GenAIEventRecorder; plumbing/providers.py adds the matching log exporter/provider factory chain mirroring the existing metrics plumbing; emitter.py wires the recorder in, gated on SpanRole.LLM_CALL.
  • resolve_logger_provider follows the same resolution order as resolve_meter_provider: injected provider wins, then an existing SDK global is reused, an explicit NoOpLoggerProvider global is treated as an opt-out, and only the default placeholder triggers building and publishing a new provider.
  • Nine new component tests and two integration-level logger tests cover role gating, the required-pair guarantee, stacktrace conditionality, the opt-out path, and end-to-end correlation; all use in-memory exporters with no network calls.

Confidence Score: 5/5

Safe to merge — the new log-based event pipeline is additive only, gated off by default, and the existing span-side error surface is untouched.

All changes are additive and isolated to the OTel integration. The feature is opt-in via a flag that defaults to false, so deployments not setting LITELLM_OTEL_INTEGRATION_ENABLE_EVENTS=true are completely unaffected. The provider resolution logic mirrors the battle-tested metrics path. Tests are comprehensive — role gating, the required-pair contract, stacktrace conditionality, the NoOp opt-out, operator-global reuse, and the full failure-callback path are all covered with in-memory exporters and no network calls. No backwards-incompatible changes to any existing signal.

No files require special attention.

Important Files Changed

Filename Overview
litellm/integrations/otel/plumbing/events.py New GenAIEventRecorder class that emits the gen_ai.client.operation.exception log-based event; required pair always present, stacktrace conditional on truthiness
litellm/integrations/otel/plumbing/providers.py Adds build_log_exporter, build_logger_provider, resolve_logger_provider, and get_event_logger, closely mirroring the existing metrics plumbing; OTLP gRPC exporter correctly omits path rewriting consistent with other signal providers
litellm/integrations/otel/emitter.py SpanEmitter gains optional GenAIEventRecorder dependency; event emission is correctly gated on LLM_CALL role and recorder presence, preserving existing span-side error surface
litellm/integrations/otel/logger.py OpenTelemetryV2 now accepts LoggerProvider and wires _init_events to build the recorder; type annotation tightened from Any to SDK LoggerProvider
litellm/integrations/otel/model/semconv.py Adds ExceptionEvent.STACKTRACE constant and new GenAIEvent class with OPERATION_EXCEPTION; constants are pinned by a dedicated test
tests/test_litellm/integrations/otel/test_otel_v2_components.py Adds 9 new unit tests covering event emission on failure, role gating, required-pair guarantee, no-op opt-out, operator global reuse, and semconv key pinning; all use in-memory exporters, no real network calls
tests/test_litellm/integrations/otel/test_otel_v2_logger.py Adds integration-level tests exercising the full failure callback to log event path via the OpenTelemetryV2 logger, plus a default-off assertion; in-memory only, no network calls

Reviews (2): Last reviewed commit: "docs(otel): document the events plumbing..." | Re-trigger Greptile

Comment thread litellm/integrations/otel/plumbing/events.py
Comment thread litellm/integrations/otel/logger.py
@codecov

codecov Bot commented Jul 9, 2026

Copy link
Copy Markdown

Codecov Report

❌ Patch coverage is 89.61039% with 8 lines in your changes missing coverage. Please review.

Files with missing lines Patch % Lines
litellm/integrations/otel/plumbing/providers.py 83.67% 8 Missing ⚠️

📢 Thoughts on this report? Let us know!

@yassin-berriai

Copy link
Copy Markdown
Contributor Author

@greptileai please review the current head 3b9c11e

@codspeed-hq

codspeed-hq Bot commented Jul 9, 2026

Copy link
Copy Markdown
Contributor

Merging this PR will not alter performance

✅ 31 untouched benchmarks


Comparing litellm_otel_genai_operation_exception_event (2038e77) with litellm_internal_staging (eb7e4a5)

Open in CodSpeed

…d LLM calls

The GenAI semantic conventions record failures of a GenAI client operation as
a log-based event named gen_ai.client.operation.exception, carrying the
exception.type / exception.message / exception.stacktrace trio at severity
WARN and correlated to the failed span. OTel v2 never emitted it: a failed LLM
call produced only the deprecated error.* span attributes, a generic exception
span event without a stacktrace, and the stacktrace under the vendor key
litellm.provider.error.stack_trace.

Build the logs pipeline (LoggerProvider + console/OTLP log exporters mirroring
the metrics plumbing) and record the event behind the enable_events flag, which
until now was defined but consumed nowhere. An operator-configured LoggerProvider
global is reused so the events ride their existing logs pipeline; an explicit
NoOpLoggerProvider global is honored as an opt-out and builds no recorder at all.

The existing span-side error surface (error.type, error.message, the exception
span event, and the litellm.provider.error.* detail keys) is untouched for
backwards compatibility.
…AI event

Filtering the event attributes on truthiness conflated "absent" with "empty",
so an empty exception.type or exception.message would have been dropped, leaving
an event with neither semconv-required field. Build the attributes so the pair is
unconditional and only the recommended stacktrace is omitted when the payload
carries none.
…ization

The new logs plumbing had no coverage for exporter-kind selection, the
console fallback for an unrecognized kind, the /v1/logs signal-path rewriting
that lets one OTEL_ENDPOINT serve every signal, or the simple-vs-batch
processor split.
@yucheng-berri
yucheng-berri force-pushed the litellm_otel_genai_operation_exception_event branch from dfe5e6b to 2038e77 Compare July 10, 2026 22:41
@yucheng-berri
yucheng-berri merged commit 99b4c5e into litellm_internal_staging Jul 10, 2026
126 checks passed
@yucheng-berri
yucheng-berri deleted the litellm_otel_genai_operation_exception_event branch July 10, 2026 23:08
yuneng-berri pushed a commit that referenced this pull request Jul 11, 2026
…d LLM calls (#32655)

* feat(otel): emit the gen_ai.client.operation.exception event on failed LLM calls

The GenAI semantic conventions record failures of a GenAI client operation as
a log-based event named gen_ai.client.operation.exception, carrying the
exception.type / exception.message / exception.stacktrace trio at severity
WARN and correlated to the failed span. OTel v2 never emitted it: a failed LLM
call produced only the deprecated error.* span attributes, a generic exception
span event without a stacktrace, and the stacktrace under the vendor key
litellm.provider.error.stack_trace.

Build the logs pipeline (LoggerProvider + console/OTLP log exporters mirroring
the metrics plumbing) and record the event behind the enable_events flag, which
until now was defined but consumed nowhere. An operator-configured LoggerProvider
global is reused so the events ride their existing logs pipeline; an explicit
NoOpLoggerProvider global is honored as an opt-out and builds no recorder at all.

The existing span-side error surface (error.type, error.message, the exception
span event, and the litellm.provider.error.* detail keys) is untouched for
backwards compatibility.

* fix(otel): always ride the semconv-required exception pair on the GenAI event

Filtering the event attributes on truthiness conflated "absent" with "empty",
so an empty exception.type or exception.message would have been dropped, leaving
an event with neither semconv-required field. Build the attributes so the pair is
unconditional and only the recommended stacktrace is omitted when the payload
carries none.

* docs(otel): document the events plumbing module in the package README

* test(otel): cover the log exporter selection and logs endpoint normalization

The new logs plumbing had no coverage for exporter-kind selection, the
console fallback for an unrecognized kind, the /v1/logs signal-path rewriting
that lets one OTEL_ENDPOINT serve every signal, or the simple-vs-batch
processor split.

(cherry picked from commit 99b4c5e)
yuneng-berri added a commit that referenced this pull request Jul 11, 2026
…rd-otel-0711

chore(release): backport #32542, #32655 to stable/1.91.x and cut 1.91.3
yuneng-berri added a commit that referenced this pull request Jul 11, 2026
…1.92.0 stable cut (#32959)

* fix(utils): resolve bedrock regional inference profiles to regional pricing in get_model_info (LIT-4056) (#32389)

* fix(utils): resolve bedrock regional inference profiles to regional pricing in get_model_info (LIT-4056)

* test(register_model): use a triple provider prefix as the unresolvable-key fixture

get_model_info now resolves bedrock/bedrock/... like a routing prefix, so the
double-prefix fixture stopped exercising the register_model fallback path.
Lock the new double-prefix resolution in as a model-info regression test

(cherry picked from commit 734fd29)

* fix(guardrails): walk Responses-API text taxonomy in shared content helpers (#32542)

* fix(guardrails): walk Responses-API text taxonomy in shared content helpers

Every guardrail sharing litellm/proxy/guardrails/_content_utils.py silently
drops all text on the /v1/responses path. AIM turns it into a loud 422 (
{"error":"No messages in the request"}); every other guardrail (Lakera v2,
Cato, Lasso, Repello, IBM, Azure Content Safety, enterprise secret
detection) scans an empty payload and lets the request through unscanned.

Three defects, all in _content_utils.py:

1. _iter_text_parts_in_content recognised only part.type == "text", but the
   Responses API uses input_text (request) and output_text (assistant).
2. _coerce_input_to_messages gated on "every item has a role key"; any
   Responses input list containing a function_call or function_call_output
   item failed the check and was wrapped as one opaque blob.
3. build_inspection_messages forwarded any role through, including a bare
   tool role missing tool_call_id, which validators like AIM's /fw/v1/analyze
   reject with a schema error.

Fix walks the actual Responses item taxonomy (message, function_call,
function_call_output, bare content parts and strings), recognises
{text, input_text, output_text} everywhere, and coerces any role outside
{system, user, assistant} to user in the outbound inspection payload.

* style: ruff-format changed guardrail files

* test(guardrails): cover function_call_output string form; drop em-dash in new docstring

* fix(guardrails): map function_call_output straight to user role

Avoids ever materialising a schema-invalid bare tool message. The
downstream role-safety coercion in build_inspection_messages still
guards genuinely caller-supplied non-standard roles (developer,
function, custom values); add a regression test covering that path
so the coercion has real coverage after this simplification.

* test(guardrails): pin chat-completions tool-role coercion in build_inspection_messages

* docs(test): soften AIM-specific claims in LIT-4294 test docstrings

Ryan's review flagged that several test docstrings assert AIM's
/fw/v1/analyze validates + rejects specific schema violations. That
behavior is customer-reported in the LIT-4294 writeup, not directly
verified by us. Rephrase to attribute the AIM 422 to the customer's
writeup and describe the underlying constraint as the OpenAI chat
schema; any downstream API that validates against that schema rejects
the same shape.

* refactor(guardrails): move unsupported-role coercion into AIM only

The generic coercion in build_inspection_messages collapsed any role
outside {system, user, assistant} to user for every caller of the
helper. Combined with the pre-existing apply_redacted_messages_back
write-back behavior in Lakera/AIM/Cato, that turned a loud OpenAI 400
on chat-completions tool-message masking into a silent semantic
corruption of the outbound request (role tool with tool_call_id got
rewritten to bare role user, dropping the assistant + tool_calls
sibling).

AIM specifically requires the coercion because its /fw/v1/analyze
validates the payload against the OpenAI chat schema; other guardrails
either do not validate roles or do their own reconstruction. Move the
coercion to AimGuardrail._build_aim_inspection_messages so the shared
helper keeps caller roles intact and no new cross-guardrail role
corruption is introduced. The pre-existing apply_redacted_messages_back
structural flatten remains as separate follow-up work.

function_call_output items still synthesise role user in the shared
helper because they have no natural role field, which is a different
concern from coercing a caller-supplied role.

* refactor(guardrails): preserve role fidelity in shared _content_utils

Shared inspection helpers should extract text and preserve semantic
role signals; role coercion for third-party schema safety stays inside
the guardrail that needs it (AIM).

Three shared-helper changes:
- Bare content-part dicts (input_text/output_text) with an explicit role
  keep it; only role-less parts default to user.
- Responses message items already had their role preserved; the
  behavior is now covered by an explicit test.
- function_call_output items default to role tool (semantic equivalent
  of the chat-completions tool message shape) instead of role user, so
  Responses and chat completions produce symmetric inspection payloads.
  A caller-supplied role on the item is still preserved.

AIM's schema-safe coercion in _build_aim_inspection_messages already
handles the resulting role tool: it collapses to user before the POST
to /fw/v1/analyze so AIM's OpenAI-schema validator does not reject the
bare tool message (no tool_call_id can survive the flatten). Added a
regression test in test_aim.py covering that path.

(cherry picked from commit e84a19a)

* feat: add Meta Model API provider and muse-spark-1.1 (day-0) (#32701)

(cherry picked from commit d82645d)

* fix(bedrock): keep mid-conversation system messages in place for Claude Invoke (#32578)

Hoisting every role system entry into the top-level system field mutates
the cache prefix whenever a client such as Claude Code appends a new
mid-conversation system message, invalidating the prompt cache for the
entire message history on Bedrock Invoke. Bedrock only rejects a system
entry at messages.0, so hoist just the leading run and forward the rest
in place

(cherry picked from commit cc36d54)

* feat(otel): emit the gen_ai.client.operation.exception event on failed LLM calls (#32655)

* feat(otel): emit the gen_ai.client.operation.exception event on failed LLM calls

The GenAI semantic conventions record failures of a GenAI client operation as
a log-based event named gen_ai.client.operation.exception, carrying the
exception.type / exception.message / exception.stacktrace trio at severity
WARN and correlated to the failed span. OTel v2 never emitted it: a failed LLM
call produced only the deprecated error.* span attributes, a generic exception
span event without a stacktrace, and the stacktrace under the vendor key
litellm.provider.error.stack_trace.

Build the logs pipeline (LoggerProvider + console/OTLP log exporters mirroring
the metrics plumbing) and record the event behind the enable_events flag, which
until now was defined but consumed nowhere. An operator-configured LoggerProvider
global is reused so the events ride their existing logs pipeline; an explicit
NoOpLoggerProvider global is honored as an opt-out and builds no recorder at all.

The existing span-side error surface (error.type, error.message, the exception
span event, and the litellm.provider.error.* detail keys) is untouched for
backwards compatibility.

* fix(otel): always ride the semconv-required exception pair on the GenAI event

Filtering the event attributes on truthiness conflated "absent" with "empty",
so an empty exception.type or exception.message would have been dropped, leaving
an event with neither semconv-required field. Build the attributes so the pair is
unconditional and only the recommended stacktrace is omitted when the payload
carries none.

* docs(otel): document the events plumbing module in the package README

* test(otel): cover the log exporter selection and logs endpoint normalization

The new logs plumbing had no coverage for exporter-kind selection, the
console fallback for an unrecognized kind, the /v1/logs signal-path rewriting
that lets one OTEL_ENDPOINT serve every signal, or the simple-vs-batch
processor split.

(cherry picked from commit 99b4c5e)

* fix(bedrock): gate in-place system role messages on model support for Claude Invoke (#32831)

* fix(bedrock): gate in-place system role messages on model support for Claude Invoke

* feat(bedrock): default unmapped Claude 4.8+ to in-place system role handling via fallback rule

(cherry picked from commit 5e23a5a)

* fix(anthropic): translate adaptive thinking/effort to pre-4.6 model support (#32867)

* fix(anthropic): translate adaptive thinking/effort to pre-4.6 model support

AnthropicMessagesConfig now reshapes the 4.6+ adaptive-thinking interface
(thinking:{type:adaptive} + output_config:{effort:...}) to whatever the routed
model supports. Thinking-capable non-adaptive models (e.g. Haiku 4.5, Sonnet 4.5)
get the effort translated to a legacy thinking budget_tokens. Models with no
reasoning support have thinking/effort dropped under drop_params. And because
adaptive thinking carries no budget while the legacy form must satisfy Anthropic's
max_tokens > budget_tokens rule, the translated budget is capped below max_tokens,
dropping thinking when max_tokens can't fit the minimum budget. 4.6+ models pass
through untouched.

This matters because clients like Claude Code speak native Anthropic /v1/messages
and send the adaptive interface unconditionally, regardless of the routed model.
The native passthrough previously only capability-gated the OpenAI-style
reasoning_effort alias and forwarded native output_config/adaptive thinking raw, so
a pre-4.6 model rejected it with "This model does not support the effort parameter"
and the request failed. Claude Code already gets drop_params auto-set, so its
requests now succeed.

* test(anthropic): gate undersized-max_tokens thinking drop on drop_params; add edge tests

Addresses review feedback on the max_tokens-too-small branch. Previously a
thinking-capable model whose max_tokens could not fit the minimum thinking budget
had thinking silently dropped regardless of drop_params, while a residual
output_config field in the same call still raised when drop_params was off. Gate
both consistently on drop_params: raise a clear error (naming max_tokens for the
undersized case) when drop_params is off, drop otherwise. Claude Code gets
drop_params auto-set, so it still succeeds.

Adds tests for the undersized-max_tokens raise, the residual output_config raise,
and the no-adaptive-interface passthrough on a non-adaptive model.

* fix(anthropic): make adaptive-effort translation silent to avoid breaking provider strip contracts

The previous raise-when-not-drop_params behavior broke existing bedrock and vertex
messages tests: those providers already silently strip unsupported output_config
for pre-4.6 models (issue #22797) with no drop_params required, and the shared
parent transform raising pre-empted that. It also conflicted with the goal of
keeping requests working rather than failing them.

Make the reshape silent: translate effort to legacy thinking for thinking-capable
models, drop thinking for non-reasoning models, and remove only the consumed effort
key from output_config, leaving any residual (e.g. format) for provider subclasses
(bedrock/vertex) to handle. No raise, no drop_params gating. This also resolves the
review note about inconsistent drop_params handling by making every path uniform.

Updates the tests to assert the silent behavior and residual output_config
preservation.

* fix(anthropic): handle output_config-capable but non-adaptive models (Opus 4.5)

Greptile caught a real bug: the early-return guard treated supports_output_config
as equivalent to supporting adaptive thinking. Claude Opus 4.5 advertises
supports_output_config (it accepts output_config.effort) but is not adaptive, so it
rejects thinking:{type:adaptive} with "adaptive thinking is not supported on this
model". The guard early-returned for Opus 4.5 and forwarded the adaptive thinking
block raw, reproducing the exact failure the fix is meant to prevent.

thinking:{type:adaptive} and output_config.effort are independent capabilities.
Only early-return for adaptive-thinking models. For a model that supports
output_config.effort but is not adaptive, keep the native effort and drop only the
unsupported adaptive thinking block. Verified live against Opus 4.5: the Claude Code
payload now returns 200 instead of 400.

Adds regression tests for Opus 4.5 with and without adaptive thinking.

* fix(anthropic): translate adaptive thinking for effort-capable pre-4.6 models

Claude Opus 4.5 advertises supports_output_config but not adaptive thinking,
so the early-return guard forwarded thinking.type=adaptive raw and Anthropic
rejected it. The guard now only skips true adaptive models; effort-only
requests on effort-capable models still pass through untouched. The
_map_reasoning_effort call is wrapped to surface unrecognized effort values
as a clean 400, matching _translate_reasoning_effort_to_anthropic

* fix(anthropic): fall back to legacy thinking when effort level unsupported

Opus 4.5 accepts output_config.effort but only low/medium/high; Claude Code
defaults to xhigh on newer models, so preserving that level raw gets rejected
by Anthropic. Gate the native-effort passthrough on _validate_effort_for_model
and fall through to the budget translation for unsupported levels

* fix(anthropic): keep effort-only requests untouched for provider normalization

The xhigh fall-through consumed effort-only requests on effort-capable
models, breaking bedrock invoke's own normalization which clamps xhigh to
the model's ceiling after the base transform runs
(test_bedrock_messages_normalizes_output_config_effort_for_opus). Restrict
the fall-through to requests that carry adaptive thinking; effort-only
requests pass through so provider subclasses keep owning level clamping

---------

Co-authored-by: Abhimanyu Kapur <38531241+akapur99@users.noreply.github.com>
(cherry picked from commit 3a62e54)

* fix(bedrock): flag mapped Claude 4.8+ entries with supports_mid_conversation_system (#32882)

Exact cost-map hits resolve before fallback-generalization rules, so the
mapped Sonnet 5, Fable 5 and jp Opus 4.8 Bedrock entries bypassed the
bedrock-anthropic-claude-mid-conversation-system rule and hoisted
mid-conversation system messages, invalidating the prompt cache.

(cherry picked from commit c15891f)

* Merge pull request #32873 from BerriAI/litellm_fallback_rules_routing_split

refactor(fallback-generalizations): split rules into routing and provider-neutral capability kinds

(cherry picked from commit 45d3644)

* Merge pull request #32874 from BerriAI/litellm_thread_provider_capability_probes

fix(anthropic): thread real provider through capability probes instead of pinning anthropic

(cherry picked from commit ead7ad3)

* test: add /v1/messages to supported_endpoints schema enum (#32739)

(cherry picked from commit bf02a4a)

---------

Co-authored-by: Mateo Wang <277851410+mateo-berri@users.noreply.github.com>
Co-authored-by: yucheng-berri <yucheng@berri.ai>
Co-authored-by: devin-ai-integration[bot] <158243242+devin-ai-integration[bot]@users.noreply.github.com>
Co-authored-by: Yassin Kortam <yassin@berri.ai>
Co-authored-by: Abhimanyu Kapur <38531241+akapur99@users.noreply.github.com>
Co-authored-by: tin-berri <tin@berri.ai>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

3 participants