From 25213f6087cced565d76010f4b81e6ec40e889c3 Mon Sep 17 00:00:00 2001 From: Krrish Dholakia Date: Mon, 28 Apr 2025 15:36:56 -0700 Subject: [PATCH] docs: fix docs --- docs/my-website/docs/pass_through/bedrock.md | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/docs/my-website/docs/pass_through/bedrock.md b/docs/my-website/docs/pass_through/bedrock.md index 25d2f4ab509..5c90f3c5d1c 100644 --- a/docs/my-website/docs/pass_through/bedrock.md +++ b/docs/my-website/docs/pass_through/bedrock.md @@ -274,9 +274,7 @@ runtime_client = boto3.client( # Custom header injection def inject_custom_headers(request, **kwargs): - request.headers.update({ - 'litellm_user_api_key': 'sk-1234', - }) + request.headers.update(custom_headers) # Attach the event to inject custom headers before the request is sent runtime_client.meta.events.register('before-send.*.*', inject_custom_headers)