Open
Description
I'm trying to integrate the Bedrock platform to be used with the llm-chain. I was trying to implement Bedrock using async-aws BedrockClient to offload the signing Http calls part. While looking into the possibilities to integrate I saw the issue that the ModelClients always expect a HttpResponse.
To facilitate using the BedrockClient I need a ModelClient which does not return a HttpResponse but rather handles the conversion internally and then return a LlmResponse directly.
Would that be something you are willing to merge or do you have a pointer how to better go about the integration?