Skip to content

feat(core): Add enableTruncation option to Anthropic AI integration - #20181

Merged
nicohrubec merged 6 commits into
developfrom
ab/anthropic-ai-enable-truncation-option
Apr 10, 2026
Merged

feat(core): Add enableTruncation option to Anthropic AI integration#20181
nicohrubec merged 6 commits into
developfrom
ab/anthropic-ai-enable-truncation-option

Conversation

@andreiborza

Copy link
Copy Markdown
Member

This PR adds an enableTruncation option to the Anthropic AI integration that allows users to disable input message truncation. It defaults to true to preserve existing behavior.

Closes: #20136

This PR adds an `enableTruncation` option to the Anthropic AI integration that
allows users to disable input message truncation. It defaults to `true`
to preserve existing behavior.
Closes: #20136
@github-actions

github-actionsBot commented Apr 10, 2026

Copy link
Copy Markdown
Contributor

Semver Impact of This PR

🟡 Minor (new features)

📋 Changelog Preview

This is how your changes will appear in the changelog.
Entries from this PR are highlighted with a left border (blockquote style).


New Features ✨

Core

  • Add enableTruncation option to Anthropic AI integration by andreiborza in #20181
  • Add enableTruncation option to OpenAI integration by andreiborza in #20167
  • Export a reusable function to add tracing headers by JPeer264 in #20076

Other

  • (deps) Bump defu from 6.1.4 to 6.1.6 by dependabot in #20104

Internal Changes 🔧

  • (bugbot) Add rules to flag test-flake-provoking patterns by Lms24 in #20192
  • (size-limit) Bump failing size limit scenario by Lms24 in #20186

🤖 This preview updates automatically when you update the PR.

@cursorcursorBot left a comment

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Cursor Bugbot has reviewed your changes and found 1 potential issue.

Fix All in Cursor

❌ Bugbot Autofix is OFF. To automatically fix reported issues with cloud agents, enable autofix in the Cursor dashboard.

Reviewed by Cursor Bugbot for commit a008245. Configure here.

Comment threaddev-packages/node-integration-tests/suites/tracing/anthropic/test.ts Outdated
@github-actions

github-actionsBot commented Apr 10, 2026

Copy link
Copy Markdown
Contributor

size-limit report 📦

PathSize% ChangeChange
@sentry/browser25.72 kB--
@sentry/browser - with treeshaking flags24.21 kB--
@sentry/browser (incl. Tracing)42.73 kB--
@sentry/browser (incl. Tracing, Profiling)47.35 kB--
@sentry/browser (incl. Tracing, Replay)81.54 kB--
@sentry/browser (incl. Tracing, Replay) - with treeshaking flags71.11 kB--
@sentry/browser (incl. Tracing, Replay with Canvas)86.25 kB--
@sentry/browser (incl. Tracing, Replay, Feedback)98.45 kB--
@sentry/browser (incl. Feedback)42.51 kB--
@sentry/browser (incl. sendFeedback)30.39 kB--
@sentry/browser (incl. FeedbackAsync)35.38 kB--
@sentry/browser (incl. Metrics)27.04 kB--
@sentry/browser (incl. Logs)27.18 kB--
@sentry/browser (incl. Metrics & Logs)27.86 kB--
@sentry/react27.48 kB--
@sentry/react (incl. Tracing)45.05 kB--
@sentry/vue30.56 kB--
@sentry/vue (incl. Tracing)44.59 kB--
@sentry/svelte25.74 kB--
CDN Bundle28.41 kB--
CDN Bundle (incl. Tracing)43.75 kB--
CDN Bundle (incl. Logs, Metrics)29.78 kB--
CDN Bundle (incl. Tracing, Logs, Metrics)44.83 kB--
CDN Bundle (incl. Replay, Logs, Metrics)68.59 kB--
CDN Bundle (incl. Tracing, Replay)80.64 kB--
CDN Bundle (incl. Tracing, Replay, Logs, Metrics)81.66 kB--
CDN Bundle (incl. Tracing, Replay, Feedback)86.17 kB--
CDN Bundle (incl. Tracing, Replay, Feedback, Logs, Metrics)87.2 kB--
CDN Bundle - uncompressed82.99 kB--
CDN Bundle (incl. Tracing) - uncompressed129.77 kB--
CDN Bundle (incl. Logs, Metrics) - uncompressed87.14 kB--
CDN Bundle (incl. Tracing, Logs, Metrics) - uncompressed133.19 kB--
CDN Bundle (incl. Replay, Logs, Metrics) - uncompressed210.12 kB--
CDN Bundle (incl. Tracing, Replay) - uncompressed246.65 kB--
CDN Bundle (incl. Tracing, Replay, Logs, Metrics) - uncompressed250.05 kB--
CDN Bundle (incl. Tracing, Replay, Feedback) - uncompressed259.56 kB--
CDN Bundle (incl. Tracing, Replay, Feedback, Logs, Metrics) - uncompressed262.95 kB--
@sentry/nextjs (client)47.47 kB--
@sentry/sveltekit (client)43.2 kB--
@sentry/node-core57.86 kB+0.02%+6 B 🔺
@sentry/node174.86 kB+0.03%+42 B 🔺
@sentry/node - without tracing97.97 kB+0.03%+20 B 🔺
@sentry/aws-serverless115.22 kB+0.02%+19 B 🔺

View base workflow run

@github-actions

github-actionsBot commented Apr 10, 2026

Copy link
Copy Markdown
Contributor

node-overhead report 🧳

Note: This is a synthetic benchmark with a minimal express app and does not necessarily reflect the real-world performance impact in an application.

ScenarioRequests/s% of BaselinePrev. Requests/sChange %
GET Baseline11,763-9,230+27%
GET With Sentry2,03917%1,837+11%
GET With Sentry (error only)7,73866%6,130+26%
POST Baseline1,326-1,209+10%
POST With Sentry65750%611+8%
POST With Sentry (error only)1,15287%1,050+10%
MYSQL Baseline3,520-3,295+7%
MYSQL With Sentry50014%440+14%
MYSQL With Sentry (error only)2,96584%2,678+11%

View base workflow run

…ion scenario
messagesFromParams wraps string input values into an array, so the
expected attribute value is JSON.stringify([longStringInput]), not the
raw string.

@nicohrubecnicohrubec left a comment

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think we should cover a multi-message scenario in the tests here but other than that lgtm

@nicohrubec
nicohrubec merged commit 468e038 into developApr 10, 2026
933 of 942 checks passed
@nicohrubec
nicohrubec deleted the ab/anthropic-ai-enable-truncation-option branch April 10, 2026 11:33
Sign up for freeto 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.

Add enableTruncation option to Anthropic AI integration

2 participants

@andreiborza@nicohrubec