Uh oh!
There was an error while loading. Please reload this page.
') + ')', 'gi'); if (regex.test(text)) { found = true; var frag = document.createDocumentFragment(); var parts = text.split(regex); parts.forEach(function(part, i) { if (i % 2 === 0) { frag.appendChild(document.createTextNode(part)); } else { var span = document.createElement('span'); span.className = 'userscript-highlight'; span.textContent = part; frag.appendChild(span); } }); node.parentNode.replaceChild(frag, node); } }); } else if (node.nodeType === 1 && node.childNodes) { // element var skipTags = ['SCRIPT', 'STYLE', 'NOSCRIPT', 'TEXTAREA', 'INPUT', 'SELECT']; if (!skipTags.includes(node.tagName)) { Array.from(node.childNodes).forEach(highlight); } } } highlight(document.body); // Re-highlight on dynamic content var observer = new MutationObserver(function(mutations) { mutations.forEach(function(m) { m.addedNodes.forEach(function(node) { if (node.nodeType === 1 || node.nodeType === 3) highlight(node); }); }); }); observer.observe(document.body, { childList: true, subtree: true }); })(); } } catch(__e) { console.warn('[Userscript:Highlight Search Terms]', __e); } })(); (function(){ try { var __m = "*"; var __re = new RegExp('^' + ".*" + ', 'i'); if (__m === '*' || __re.test(location.href)) { // Strip utm_, fbclid, gclid, etc. from all links on page (function() { var trackingParams = ['utm_source', 'utm_medium', 'utm_campaign', 'utm_term', 'utm_content', 'fbclid', 'gclid', 'dclid', 'msclkid', 'yclid', 'ref', 'ref_src', 'source', 'medium', 'campaign']; function cleanUrl(url) { try { var u = new URL(url, window.location.origin); var changed = false; trackingParams.forEach(function(p) { if (u.searchParams.has(p)) { u.searchParams.delete(p); changed = true; } }); return changed ? u.toString() : url; } catch (e) { return url; } } function cleanLinks() { document.querySelectorAll('a[href]').forEach(function(a) { var clean = cleanUrl(a.href); if (clean !== a.href) a.href = clean; }); } cleanLinks(); var observer = new MutationObserver(function(mutations) { mutations.forEach(function(m) { m.addedNodes.forEach(function(node) { if (node.nodeType === 1) { if (node.tagName === 'A') cleanLinks(); node.querySelectorAll('a[href]').forEach(function(a) { var clean = cleanUrl(a.href); if (clean !== a.href) a.href = clean; }); } }); }); }); observer.observe(document.body, { childList: true, subtree: true }); })(); } } catch(__e) { console.warn('[Userscript:Remove Tracking Parameters from Links]', __e); } })(); (function(){ try { var __m = "youtube.com"; var __re = new RegExp('^' + "youtube\\.com" + ', 'i'); if (__m === '*' || __re.test(location.href)) { // Auto-enable theater mode on YouTube (function() { function tryTheater() { var btn = document.querySelector('button[aria-label="Theater mode"], ytd-player #player button[title="Theater mode"]'); if (btn && !btn.classList.contains('activated')) { btn.click(); } } // Try immediately tryTheater(); // Try after navigation (SPA) var lastUrl = location.href; setInterval(function() { if (location.href !== lastUrl) { lastUrl = location.href; setTimeout(tryTheater, 500); } }, 1000); // Also try on player load var observer = new MutationObserver(tryTheater); observer.observe(document.body, { childList: true, subtree: true }); })(); } } catch(__e) { console.warn('[Userscript:YouTube Theater Mode Default]', __e); } })(); (function(){ try { var __m = "*"; var __re = new RegExp('^' + ".*" + ', 'i'); if (__m === '*' || __re.test(location.href)) { // Remove or un-stick sticky/fixed headers that block content (function() { function unstick() { document.querySelectorAll('header, nav, [role="banner"], .header, .navbar, .sticky, .fixed-top, [style*="position: fixed"], [style*="position:sticky"]').forEach(function(el) { if (el.style.position === 'fixed' || el.style.position === 'sticky' || getComputedStyle(el).position === 'fixed' || getComputedStyle(el).position === 'sticky') { el.style.position = 'static'; el.style.top = 'auto'; el.style.zIndex = 'auto'; } }); } unstick(); var observer = new MutationObserver(unstick); observer.observe(document.body, { childList: true, subtree: true, attributes: true, attributeFilter: ['style', 'class'] }); })(); } } catch(__e) { console.warn('[Userscript:Kill Sticky Headers]', __e); } })(); })();
There was an error while loading. Please reload this page.
start_async_invoke() not instrumented #524
Summary
The AWS Bedrock Runtime
start_async_invoke()API is not instrumented. Calls toclient.start_async_invoke(...)produce zero Braintrust tracing. This method submits an asynchronous model invocation job — output is written to an S3 bucket — and is the Bedrock analog to batch inference APIs that are already instrumented for Anthropic (messages.batches.create()) and tracked as gaps for OpenAI (#295), Mistral (#272), and Google GenAI (#332).The Bedrock Runtime integration was completed in #279 (closed 2026-06-16) and instruments the four synchronous execution surfaces.
start_async_invokewas not included.What is missing
client.converse(...)client.converse_stream(...)client.invoke_model(...)client.invoke_model_with_response_stream(...)client.start_async_invoke(...)API details
POST /async-invokemodelId,modelInput(provider-specific JSON), andoutputDataConfig(S3 output location). The API returns aninvocationArnimmediately; output is written to S3 when complete.client.get_async_invoke(invocationArn=...)orclient.list_async_invokes().Minimum instrumentation for
start_async_invokeAt minimum,
start_async_invokeshould create a span capturing:modelInput(parsed JSON body),modelIdinvocationArn, submission HTTP statusprovider: "bedrock",model(frommodelId), S3 output location,clientRequestTokenif setSpan type should be
SpanTypeAttribute.TASK, matching the Anthropic batch pattern.Availability
start_async_invokeis in both boto3 matrix pins:boto3==1.43.29(latest)boto3==1.34.116(floor)It is in the
bedrock-runtimeservice (notbedrock-agent-runtime), so it is reachable via the samewrap_bedrock_client(client)helper that wraps the existing four methods.Braintrust docs status
not_found — The AWS Bedrock integration page documents tracing for
converseandinvoke_model. No mention of async invocation.Upstream sources
StartAsyncInvoke— https://docs.aws.amazon.com/bedrock/latest/APIReference/API_runtime_StartAsyncInvoke.htmlstart_async_invokemethod in thebedrock-runtimeserviceLocal files inspected
py/src/braintrust/integrations/bedrock_runtime/patchers.py— definesConversePatcher,ConverseStreamPatcher,InvokeModelPatcher,InvokeModelWithResponseStreamPatcher, composed intoBedrockRuntimeClientMethodsPatcher; zero references tostart_async_invokepy/src/braintrust/integrations/bedrock_runtime/tracing.py—_converse_wrapper,_converse_stream_wrapper,_invoke_model_wrapper,_invoke_model_stream_wrapperonly; no async invoke wrapperspy/src/braintrust/integrations/bedrock_runtime/integration.py— registersBedrockRuntimeClientMethodsPatcher; no async invoke registrationpy/src/braintrust/integrations/anthropic/tracing.py— Anthropicmessages.batches.create()IS instrumented as atask-type span — reference implementation for this patternpy/pyproject.toml—[tool.braintrust.matrix.boto3]pins:latest = "boto3==1.43.29","1.34.116" = "boto3==1.34.116"Relationship to existing issues
converse,converse_stream,invoke_model,invoke_model_with_response_stream;start_async_invokewas not in scopeclient.batches.create()) not instrumented #295 tracks the analogous OpenAI Batch API gap (client.batches.create())client.batch.jobs.create()) not instrumented #272 tracks the analogous Mistral Batch Jobs API gap (client.batch.jobs.create())client.batches.create/create_embeddings) #332 tracks the analogous Google GenAI Batch API gap (client.batches.create())