sorry i forgot the pre commit hooks

This commit is contained in:
TorgemanTarak 2024-12-17 16:35:06 +01:00
parent d360800cbf
commit f439c6717b
No known key found for this signature in database

View file

@ -38,7 +38,7 @@ class BedrockLLM(BaseLLM):
"region_name": os.environ.get("AWS_DEFAULT_REGION", self.config.region_name),
}
session = boto3.Session(**self.__credential_kwargs)
client = session.client(service_name,region_name = self.__credential_kwargs["region_name"])
client = session.client(service_name, region_name=self.__credential_kwargs["region_name"])
return client
@property