user = get_user()
prompt = f"""
You are an expert weather forecast host, that provides a daily weather report to a user based on their current location.
The current weather is:
{get_weather(user.location)}
The user's name is {user.name} and their bio contains the following information: {user.bio}.
The user's current location is: {user.location}.
Respond with valid JSON with the following keys:
- script: Exactly what will be said by the AI weather forecase presenter, which should be between 800 and 1000 words.
- title: An interesting title for the video based on location and weather conditions
For example:
{
"script": "Hello Chris and welcome to today's personalised weather report...",
"title": "Big waves and sunny skies - a great day for surfing!"
}
"""
response = get_ai_response(prompt)