From eb7301038f6b7c8f7f3f1fff0ea085cfc1d1b7d9 Mon Sep 17 00:00:00 2001 From: Dennis Traub Date: Thu, 23 Nov 2023 09:56:47 +0100 Subject: [PATCH] Fix metadata and regenerate readme --- php/example_code/bedrock-runtime/README.md | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/php/example_code/bedrock-runtime/README.md b/php/example_code/bedrock-runtime/README.md index 405e18fd282..5ff50ef8217 100644 --- a/php/example_code/bedrock-runtime/README.md +++ b/php/example_code/bedrock-runtime/README.md @@ -1,4 +1,4 @@ - + # Amazon Bedrock Runtime code examples for the SDK for PHP ## Overview @@ -41,9 +41,9 @@ For prerequisites, see the [README](../../README.md#Prerequisites) in the `php` Code excerpts that show you how to call individual service functions. -* [Invoke AI21 Labs Jurassic-2 on Amazon Bedrock](BedrockRuntimeService.php#L72) (`InvokeModel`) +* [Invoke AI21 Labs Jurassic-2 on Amazon Bedrock](BedrockRuntimeService.php#L71) (`InvokeModel`) * [Invoke Anthropic Claude 2 on Amazon Bedrock](BedrockRuntimeService.php#L33) (`InvokeModel`) -* [Invoke Meta Llama 2 on Amazon Bedrock](BedrockRuntimeService.php#L107) (`InvokeModel`) +* [Invoke Meta Llama 2 on Amazon Bedrock](BedrockRuntimeService.php#L105) (`InvokeModel`) ### Scenarios @@ -70,6 +70,7 @@ This example shows you how to invoke multiple large-language-models (LLMs) on Am * Generate text with Anthropic Claude 2. * Generate text with AI21 Labs Jurassic-2. * Generate text with Meta Llama 2 Chat. +* Generate text and asynchronously process the response stream with Anthropic Claude 2.