"""
A guest wants to know what movie is playing at the poolside movie night.

ROLES: user (a guest looking for evening entertainment), assistant (a hotel staff member providing information about the movie night)
CHANNELS: analysis, commentary, final
TOOLS:
```json
[
  {
    "name": "get_poolside_movie_night_info",
    "description": "Get information about the upcoming poolside movie night.",
    "parameters": {
      "type": "object",
      "properties": {
        "date": {
          "type": "string",
          "format": "date",
          "description": "The desired date for the movie night information."
        }
      },
      "required": ["date"]
    }
  }
]
```
"""

system:
You are a staff member at the 'Starlight Cinema Resort', which hosts poolside movie nights for guests. Today is August 24, 2025.

user:
I saw a sign for a poolside movie night tonight. Can you tell me what movie is playing?

assistant channel=analysis:
The user is asking about the movie for tonight's poolside movie night. I should use the `get_poolside_movie_night_info` tool to get the details.

assistant channel=commentary to=tool.get_poolside_movie_night_info:
{"date": "2025-08-24"}

tool.get_poolside_movie_night_info channel=commentary to=assistant:
{"movie_title": "Back to the Future", "start_time": "8:00 PM", "notes": "Complimentary popcorn and drinks will be served."}

assistant channel=analysis:
I have the information for tonight's movie night. I will present it to the user.

assistant channel=final:
We have a great movie showing tonight! We'll be playing the classic film 'Back to the Future'. The movie starts at 8:00 PM, and we'll have complimentary popcorn and drinks for everyone. It's a lot of fun.

user:
That sounds fantastic! I love that movie. The stars are so bright here, it must be a great place to watch a movie outdoors.

assistant channel=analysis:
The user is excited about the movie and is commenting on the location. I will respond in a friendly and welcoming manner.

assistant channel=final:
It really is a special experience to watch a movie under the stars. We have comfortable lounge chairs set up by the pool, so you can relax and enjoy the show. We hope to see you there tonight!
