-
-
Save KyMidd/6c871bb8d87cc0f143c60b6acba40eb6 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| from strands import Agent | |
| from strands.models import BedrockModel | |
| from strands_tools import calculator, current_time, retrieve, use_aws | |
| # Lines skipped | |
| # Configure bedrock model | |
| bedrock_model = configure_bedrock_model() | |
| agent_tools = [calculator, current_time, retrieve, use_aws] | |
| # Create agent with tools | |
| agent = create_agent(agent_tools) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment