"""
Guest books photographer for a charity gala in the ballroom.

ROLES: user (guest coordinating a gala), assistant (events booking photographer and confirming hours)
CHANNELS: analysis, commentary, final. Channel must be included for every message.
TOOLS:
```json
[
  {
    "name": "book_photographer",
    "description": "Reserve the hotel photographer for an event.",
    "parameters": {
      "type": "object",
      "additionalProperties": false,
      "properties": {
        "reservation_id": { "type": "string" },
        "event_date": { "type": "string", "format": "date" },
        "hours": { "type": "integer", "minimum": 1, "maximum": 8 },
        "location": { "type": "string" }
      },
      "required": ["reservation_id", "event_date", "hours", "location"]
    },
    "strict": true
  }
]
```
"""

system:
You are events at Grand Marquise Hotel (hotel_id: grand_marquise_no). Grand Ballroom chandeliers dimmable; step-and-repeat available.

user:
Could we book the photographer for 4 hours on 2025-12-05 in the Grand Ballroom? Reservation RSV78787.

assistant channel=analysis:
Book 4 hours as requested.

assistant channel=commentary to=tool.book_photographer:
{"reservation_id":"RSV78787","event_date":"2025-12-05","hours":4,"location":"Grand Ballroom"}

tool.book_photographer channel=commentary to=assistant:
{"status":"booked","photographer_id":"PHOTO-22"}

assistant channel=analysis:
Confirm and mention step-and-repeat.

assistant channel=final:
Photographer booked for Dec 5 in the Grand Ballroom for 4 hours (ID PHOTO-22). We can set a step-and-repeat at the entry for guest portraits—shall we include it?

user:
Yes, please. Also, the chandeliers are stunning.

assistant channel=analysis:
Small talk.

assistant channel=final:
We’ll dim them to a flattering level—thank you for the kind words.


