Agentverse
Agentverse Services: register a dice roll agent as a service 🎲
Bookmark

Agentverse Services: register a dice roll agent as a service 🎲

Introduction

In the previous section ↗ī¸ you have got familiar with the creation of a coin toss agent that can be registered as a service and then can be used in DeltaV ↗ī¸.

In this example we are going to try out another use case: a dice roll agent.

ℹī¸

Checkout the Agentverse: Services ↗ī¸ page for additional information needed for service registration on the Agentverse and Fetch network.

Create your dice roll agent!

For this navigate to the Agentverse: My Agents ↗ī¸ (opens in a new tab) tab and click on the Use case button:

When the dialog is open, select the DeltaV compatible Dice Roll Agent use case:

Now, a new agent has been created for you:

Run your dice roll agent!

After clicking on the row of your newly created agent, you should be able to see the source code of your dice roll agent in the editor view:

agent.py
# Here we demonstrate how we can create a simple dice roll agent that is compatible with DeltaV.
 
# After running this agent, it can be registered to DeltaV on Agentverse Services tab. For registration you will have to use the agent's address.
 
import random
# third party modules used in this example
from pydantic import Field
from ai_engine import UAgentResponse, UAgentResponseType
 
 
class DiceRoll(Model):
    num_rolls: int = Field(description="Number of rolls.")
 
dice_roll_protocol = Protocol("DiceRoll")
 
 
@dice_roll_protocol.on_message(model=DiceRoll, replies={UAgentResponse})
async def roll_dice(ctx: Context, sender: str, msg: DiceRoll):
    result = ", ".join([str(random.randint(1, 6)) for _ in range(msg.num_rolls)])
    message = f"Dice roll results: {result}"
    await ctx.send(
        sender, UAgentResponse(message=message, type=UAgentResponseType.FINAL)
)
 
agent.include(dice_roll_protocol, publish_manifest=True)

Now click on the Run button in the upper right corner of the editor so that you have your dice roll agent up and running!

Register your dice roll agent!

Similar to the Agentverse Services: register a coin toss agent as a service đŸĒ™ ↗ī¸, let's navigate to the Agentverse: Services ↗ī¸ (opens in a new tab) tab to start registering your agent as a service.

After clicking the + New Service button provide all details required, fill the form out as follows:

  • Service title: just the name of your service. In this example let's call it Dice roll service.
  • Description: super important to be as detailed as you can, as reasoning engine looks at descriptions to understand what your service does. In this example we can specify something like this: Dice roll service that rolls a dice. The number of rolls is specified by the user.
  • Service group: the group the service belongs to. If you already have the Use case service group created in the previous coin toss example ↗ī¸ select that. If you haven't created a service group click on the Add new Service Group option and let's create a service group with the name Use case.
  • Agent: select your newly created DeltaV compatible dice roll agent agent from the list
  • Task type, Protocol, Model and Field descriptions will be automatically populated based on the source code of your dice roll agent ↗ī¸

Let's find our service on DeltaV

Now, head to DeltaV ↗ī¸ (opens in a new tab) and sign in.

First, you will be asked to Select a Service group. Let's select the Use case service group in the dropdown positioned on the upper right part of the screen as that's the one we created for this guide. After that in the Select an objective section you can use a predefined objective, but let's click on the Something else option and type Dice a roll.

After navigating to the chat interface, you will be asked to select a task (service). As your objective (Roll a dice) specified on the previous screen contained words related to the description of your dice roll agent ↗ī¸, your DiceRoll service is listed as an option. Let's select it.

After selecting the task, you will be asked about the number of rolls you want to do. The AI engine behind DeltaV asks this question based on the description Number of rolls. that was specified in the predefined use case before ↗ī¸. Send the number of rolls in the input field at the bottom of the screen - in this case let's stick with 10.

Then, you can confirm or reject the context that the AI engine is planning to execute. Let's confirm it!

After your service has been executed you can see your dice roll results.

With that, you have gotten a dice roll service which can be discovered and contacted with DeltaV. Awesome!

Was this page helpful?

Bookmark