Cdk crypto

Comment

Author: Admin | 2025-04-28

Control: Currently the RCON port is not available on the server, so there is no admin access. This will be addressed in the future.Steps to deploy:From the cdk/ folder, open a terminal, install the node packages as required npm install.Deploy the CDK project from cdk/ using context variables agentId and agentAliasId, e.g.:Usage:Launch Minecraft v1.20.1.Select Multiplayer and select Add Server.Enter the address of the Network LoadBalancer that was deployed by CDK, using port :25565.Interact with Rocky in game by using the in game chat, pressing t. Try "hello", "come to me" and "dig a 2 by 2 hole". Watch the debug output in the terminal you are running from.If you have tried a little bit to play with Rocky, you'll notice it's capabilities are limited. That because if you take a closer look at the agent, you will see different sections including Model details and Action groups. In the Model detail you will see the Instruction for the agent. This section is a preprompt sent to to the model along with the player input. This allows us to do a little bit of prompt engineering and dictate how the model should behave. The action groups section contains all the logic, meaning all the different actions that the bot can perform aside from just talking. For example when clicking on the MinecraftActions action group you will see the different actions that where precoded such as action_dig. For each of the function, you need to specify a description that is what the LLM is going to read to make a decision as to why it should use it or not depending on its interaction with the player. You can check what each function does in the code agent_ts/src/actions/If you want to add other capabilities to your bot, feel free to add more functions

Add Comment