in answers/task_3/tools.py [0:0]
def read_schedule() -> str:
"""Use this tool to read the PyData schedule about which a user will ask questions.
Returns:
str: The PyData Amsterdam 2025 schedule data as JSON text.
"""
schedule = get_schedule(out_format="dict")
return json.dumps(schedule, indent=4)