Skip to content

Commit

Permalink
Remove extraneous semicolon from readmes
Browse files Browse the repository at this point in the history
  • Loading branch information
DennisTraub committed Jan 17, 2024
1 parent c701cdc commit 4c468f9
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 14 deletions.
2 changes: 1 addition & 1 deletion .doc_gen/metadata/bedrock-runtime_metadata.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,7 @@ bedrock-runtime_InvokeClaude:

bedrock-runtime_InvokeJurassic2:
title: Invoke the AI21 Labs Jurassic-2 model on &BR; for text generation
title_abbrev: Text generation with AI21 Labs Jurassic-2;
title_abbrev: Text generation with AI21 Labs Jurassic-2
synopsis: invoke the AI21 Labs Jurassic-2 model on &BR; for text generation.
category:
languages:
Expand Down
2 changes: 1 addition & 1 deletion gov2/bedrock-runtime/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ For prerequisites, see the [README](../README.md#Prerequisites) in the `gov2` fo
Code excerpts that show you how to call individual service functions.

- [Image generation with Amazon Titan Image Generator G1](actions/invoke_model.go#L178) (`InvokeModel`)
- [Text generation with AI21 Labs Jurassic-2;](actions/invoke_model.go#L78) (`InvokeModel`)
- [Text generation with AI21 Labs Jurassic-2](actions/invoke_model.go#L78) (`InvokeModel`)
- [Text generation with Anthropic Claude 2](actions/invoke_model.go#L27) (`InvokeModel`)
- [Text generation with Anthropic Claude 2 with a response stream](actions/invoke_model_with_response_stream.go#L30) (`InvokeModelWithResponseStream`)
- [Text generation with Meta Llama 2 Chat](actions/invoke_model.go#L130) (`InvokeModel`)
Expand Down
12 changes: 6 additions & 6 deletions javav2/example_code/bedrock-runtime/Readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,12 +34,12 @@ For prerequisites, see the [README](../../README.md#Prerequisites) in the `javav

Code excerpts that show you how to call individual service functions.

- [Image generation with Amazon Titan Image Generator G1](src/main/java/com/example/bedrockruntime/InvokeModelAsync.java#L286) (`InvokeModel`)
- [Image generation with Stability.ai Stable Diffusion XL](src/main/java/com/example/bedrockruntime/InvokeModelAsync.java#L220) (`InvokeModel`)
- [Text generation with AI21 Labs Jurassic-2;](src/main/java/com/example/bedrockruntime/InvokeModelAsync.java#L99) (`InvokeModel`)
- [Text generation with Anthropic Claude 2](src/main/java/com/example/bedrockruntime/InvokeModelAsync.java#L38) (`InvokeModel`)
- [Text generation with Anthropic Claude 2 with a response stream](src/main/java/com/example/bedrockruntime/InvokeModelWithResponseStream.java#L34) (`InvokeModelWithResponseStream`)
- [Text generation with Meta Llama 2 Chat](src/main/java/com/example/bedrockruntime/InvokeModelAsync.java#L161) (`InvokeModel`)
- [Image generation with Amazon Titan Image Generator G1](src/main/java/com/example/bedrockruntime/InvokeModelAsync.java#L288) (`InvokeModel`)
- [Image generation with Stability.ai Stable Diffusion XL](src/main/java/com/example/bedrockruntime/InvokeModelAsync.java#L218) (`InvokeModel`)
- [Text generation with AI21 Labs Jurassic-2](src/main/java/com/example/bedrockruntime/InvokeModelAsync.java#L94) (`InvokeModel`)
- [Text generation with Anthropic Claude 2](src/main/java/com/example/bedrockruntime/InvokeModelAsync.java#L32) (`InvokeModel`)
- [Text generation with Anthropic Claude 2 with a response stream](src/main/java/com/example/bedrockruntime/InvokeModelWithResponseStream.java#L28) (`InvokeModelWithResponseStream`)
- [Text generation with Meta Llama 2 Chat](src/main/java/com/example/bedrockruntime/InvokeModelAsync.java#L157) (`InvokeModel`)


<!--custom.examples.start-->
Expand Down
10 changes: 5 additions & 5 deletions php/example_code/bedrock-runtime/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,11 +40,11 @@ For prerequisites, see the [README](../../README.md#Prerequisites) in the `php`

Code excerpts that show you how to call individual service functions.

- [Image generation with Amazon Titan Image Generator G1](BedrockRuntimeService.php#L185) (`InvokeModel`)
- [Image generation with Stability.ai Stable Diffusion XL](BedrockRuntimeService.php#L143) (`InvokeModel`)
- [Text generation with AI21 Labs Jurassic-2;](BedrockRuntimeService.php#L73) (`InvokeModel`)
- [Text generation with Anthropic Claude 2](BedrockRuntimeService.php#L34) (`InvokeModel`)
- [Text generation with Meta Llama 2 Chat](BedrockRuntimeService.php#L108) (`InvokeModel`)
- [Image generation with Amazon Titan Image Generator G1](BedrockRuntimeService.php#L184) (`InvokeModel`)
- [Image generation with Stability.ai Stable Diffusion XL](BedrockRuntimeService.php#L142) (`InvokeModel`)
- [Text generation with AI21 Labs Jurassic-2](BedrockRuntimeService.php#L72) (`InvokeModel`)
- [Text generation with Anthropic Claude 2](BedrockRuntimeService.php#L33) (`InvokeModel`)
- [Text generation with Meta Llama 2 Chat](BedrockRuntimeService.php#L107) (`InvokeModel`)

### Scenarios

Expand Down
2 changes: 1 addition & 1 deletion python/example_code/bedrock-runtime/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ Code excerpts that show you how to call individual service functions.

- [Image generation with Amazon Titan Image Generator G1](bedrock_runtime_wrapper.py#L195) (`InvokeModel`)
- [Image generation with Stability.ai Stable Diffusion XL](bedrock_runtime_wrapper.py#L152) (`InvokeModel`)
- [Text generation with AI21 Labs Jurassic-2;](bedrock_runtime_wrapper.py#L79) (`InvokeModel`)
- [Text generation with AI21 Labs Jurassic-2](bedrock_runtime_wrapper.py#L79) (`InvokeModel`)
- [Text generation with Anthropic Claude 2](bedrock_runtime_wrapper.py#L39) (`InvokeModel`)
- [Text generation with Anthropic Claude 2 with a response stream](bedrock_runtime_wrapper.py#L240) (`InvokeModelWithResponseStream`)
- [Text generation with Meta Llama 2 Chat](bedrock_runtime_wrapper.py#L115) (`InvokeModel`)
Expand Down

0 comments on commit 4c468f9

Please sign in to comment.