diff --git a/integrations/amazon_bedrock/src/haystack_integrations/components/generators/amazon_bedrock/adapters.py b/integrations/amazon_bedrock/src/haystack_integrations/components/generators/amazon_bedrock/adapters.py index 7c8e5b060..0fbf04de7 100644 --- a/integrations/amazon_bedrock/src/haystack_integrations/components/generators/amazon_bedrock/adapters.py +++ b/integrations/amazon_bedrock/src/haystack_integrations/components/generators/amazon_bedrock/adapters.py @@ -105,7 +105,7 @@ def prepare_body(self, prompt: str, **inference_kwargs) -> Dict[str, Any]: :param prompt: The prompt to be sent to the model. :param inference_kwargs: Additional keyword arguments passed to the handler. :returns: A dictionary with the following keys: - - prompt: The prompt to be sent to the model. + - `prompt`: The prompt to be sent to the model. - specified inference parameters. """ default_params = { @@ -151,7 +151,7 @@ def prepare_body(self, prompt: str, **inference_kwargs) -> Dict[str, Any]: :param prompt: The prompt to be sent to the model. :param inference_kwargs: Additional keyword arguments passed to the handler. :returns: A dictionary with the following keys: - - prompt: The prompt to be sent to the model. + - `prompt`: The prompt to be sent to the model. - specified inference parameters. """ default_params = { @@ -202,7 +202,7 @@ def prepare_body(self, prompt: str, **inference_kwargs) -> Dict[str, Any]: :param prompt: The prompt to be sent to the model. :param inference_kwargs: Additional keyword arguments passed to the handler. :returns: A dictionary with the following keys: - - prompt: The prompt to be sent to the model. + - `prompt`: The prompt to be sent to the model. - specified inference parameters. """ default_params = { @@ -241,7 +241,7 @@ def prepare_body(self, prompt: str, **inference_kwargs) -> Dict[str, Any]: :param prompt: The prompt to be sent to the model. :param inference_kwargs: Additional keyword arguments passed to the handler. :returns: A dictionary with the following keys - - inputText: The prompt to be sent to the model. + - `inputText`: The prompt to be sent to the model. - specified inference parameters. """ default_params = { @@ -287,7 +287,7 @@ def prepare_body(self, prompt: str, **inference_kwargs) -> Dict[str, Any]: :param prompt: The prompt to be sent to the model. :param inference_kwargs: Additional keyword arguments passed to the handler. :returns: A dictionary with the following keys: - - prompt: The prompt to be sent to the model. + - `prompt`: The prompt to be sent to the model. - specified inference parameters. """ default_params = {