├── .gitignore ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── converse_agent.py ├── converse_tools.py ├── game.py ├── game_state.py ├── img └── adventure-game.jpg ├── main.py ├── register_tools.py ├── requirements.txt └── system.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/build-on-aws/amazon-bedrock-adventure-game/HEAD/.gitignore -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/build-on-aws/amazon-bedrock-adventure-game/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/build-on-aws/amazon-bedrock-adventure-game/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/build-on-aws/amazon-bedrock-adventure-game/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/build-on-aws/amazon-bedrock-adventure-game/HEAD/README.md -------------------------------------------------------------------------------- /converse_agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/build-on-aws/amazon-bedrock-adventure-game/HEAD/converse_agent.py -------------------------------------------------------------------------------- /converse_tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/build-on-aws/amazon-bedrock-adventure-game/HEAD/converse_tools.py -------------------------------------------------------------------------------- /game.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/build-on-aws/amazon-bedrock-adventure-game/HEAD/game.py -------------------------------------------------------------------------------- /game_state.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/build-on-aws/amazon-bedrock-adventure-game/HEAD/game_state.py -------------------------------------------------------------------------------- /img/adventure-game.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/build-on-aws/amazon-bedrock-adventure-game/HEAD/img/adventure-game.jpg -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/build-on-aws/amazon-bedrock-adventure-game/HEAD/main.py -------------------------------------------------------------------------------- /register_tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/build-on-aws/amazon-bedrock-adventure-game/HEAD/register_tools.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | boto3>=1.34.0 2 | colorama>=0.4.6 3 | networkx>=3.2.1 -------------------------------------------------------------------------------- /system.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/build-on-aws/amazon-bedrock-adventure-game/HEAD/system.txt --------------------------------------------------------------------------------