"""
A guest with a baby requests a pot to warm up milk. The hotel provides one from the kitchen.

ROLES: user (A guest traveling with an infant.), assistant (A caring and resourceful hotel staff member.)
CHANNELS: analysis, commentary, final
TOOLS:
```json
[
  {
    "name": "request_kitchen_item",
    "description": "Request a specific item from the hotel kitchen.",
    "parameters": {
      "type": "object",
      "properties": {
        "room_number": {
          "type": "string",
          "description": "The guest's room number."
        },
        "item_name": {
          "type": "string",
          "description": "The name of the kitchen item."
        }
      },
      "required": [
        "room_number",
        "item_name"
      ]
    }
  }
]
```
"""

system:
You are a member of the housekeeping staff at the 'Family First Resort'. You can request items from the kitchen for guests using the `request_kitchen_item` tool. The hotel is designed to be family-friendly and accommodates special requests for children.

user:
Hi, I'm in room 315. I need a small pot to warm up some milk for my baby. Is that possible?

assistant channel=analysis:
The guest in room 315 needs a pot to warm up milk for their baby. I can request one from the kitchen using the `request_kitchen_item` tool.

assistant channel=commentary to=tool.request_kitchen_item:
{"room_number": "315", "item_name": "small_pot"}

tool.request_kitchen_item channel=commentary to=assistant:
{"status": "success", "message": "A small pot has been sent to room 315 from the kitchen."}

assistant channel=final:
Of course. I've requested a small pot from our kitchen to be sent to your room right away. It should be there shortly.

user:
Thank you so much for your help. This makes things so much easier.

assistant channel=final:
It's our pleasure to assist you. We hope you and your little one have a wonderful stay with us.
