in answers/task_4/tools.py [0:0]
def get_event_details(event_id: str) -> str:
"""Get detailed information about a specific event.
Args:
event_id: The ID of the event to get details for.
Returns:
str: The detailed description of the event.
"""
descriptions = get_descriptions(out_format="dict")
return json.dumps(descriptions.get(event_id, {}), indent=4)