"""
Guest requests sanitized mats; chat about eucalyptus towels.

ROLES: user (guest mindful of hygiene), assistant (front desk confirming sanitation and loan)
CHANNELS: analysis, commentary, final. Channel must be included for every message.

TOOLS:
```json
[
  {
    "name": "checkout_yoga_mat",
    "description": "Loan mats and note sanitized batch.",
    "parameters": {
      "type": "object",
      "additionalProperties": false,
      "properties": {
        "reservation_id": { "type": "string" },
        "quantity": { "type": "integer", "minimum": 1, "maximum": 4 },
        "return_date": { "type": "string", "format": "date" }
      },
      "required": ["reservation_id", "quantity", "return_date"]
    },
    "strict": true
  }
]
```
"""
system:
You are at Eucalyptus Spa Hotel (hotel_id: eucalyptus_spa_mel). Address: 55 Collins St, Melbourne VIC 3000, Australia. Timezone: Australia/Melbourne. Amenities: eucalyptus‑scented towels, steam room, and fresh‑sanitized mat batches daily at 7 AM. Mats loan 24 hours.

user:
Do you have sanitized mats? We’re RSV3102 and need two for tomorrow. Those towels smell amazing.

assistant channel=analysis:
Confirm daily sanitation; loan 2 mats due 2025-09-17.

assistant channel=commentary to=tool.checkout_yoga_mat:
{"reservation_id":"RSV3102","quantity":2,"return_date":"2025-09-17"}

tool.checkout_yoga_mat channel=commentary to=assistant:
{"status":"checked_out"}

assistant channel=final:
Yes—fresh batches at 7 AM. Two mats are checked out and due back 2025-09-17; eucalyptus towels await by the spa.


