From 83c5b48842ac325344309ec8d0bc64dabfeafde9 Mon Sep 17 00:00:00 2001 From: Krrish Dholakia Date: Wed, 28 Aug 2024 12:15:57 -0700 Subject: [PATCH] fix(rds_iam_token.py): fix boto3 client init for rds --- litellm/proxy/auth/rds_iam_token.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/litellm/proxy/auth/rds_iam_token.py b/litellm/proxy/auth/rds_iam_token.py index f65fc4a99d7..19dd6f7a3f2 100644 --- a/litellm/proxy/auth/rds_iam_token.py +++ b/litellm/proxy/auth/rds_iam_token.py @@ -149,7 +149,7 @@ def init_rds_client( # boto3 automatically reads env variables client = boto3.client( - service_name="bedrock-runtime", + service_name="rds", region_name=region_name, config=config, )