diff --git a/README.md b/README.md index 17d2ff1..5c0abc0 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,9 @@ # lambda-gurumi-ai-bot +A serverless Slack bot using AWS Lambda, API Gateway, and DynamoDB. + +![Gurumi Bot](images/gurumi-bot.png) + ## Install ```bash diff --git a/bedrock/invoke_claude_3_image.py b/bedrock/invoke_claude_3_image.py index d728f66..6a75f9e 100644 --- a/bedrock/invoke_claude_3_image.py +++ b/bedrock/invoke_claude_3_image.py @@ -31,7 +31,7 @@ def invoke_claude_3(prompt): # Invoke Claude 3 with the text prompt model_id = "anthropic.claude-3-sonnet-20240229-v1:0" - image = "./gurumi-bot.png" + image = "../images/gurumi-bot.png" # Read reference image from file and encode as base64 strings. with open(image, "rb") as file: diff --git a/bedrock/gurumi-bot.png b/images/gurumi-bot.png similarity index 100% rename from bedrock/gurumi-bot.png rename to images/gurumi-bot.png