Update app.py
Browse files
app.py
CHANGED
|
@@ -17,8 +17,7 @@ def calculate_walking_time_paris(start, end) -> int:
|
|
| 17 |
"""
|
| 18 |
# This is a placeholder function. In a real scenario, this function would call a tool to get the actual walking time.
|
| 19 |
# For now, we'll use predefined walking times for simplicity.
|
| 20 |
-
walking_times =
|
| 21 |
-
{
|
| 22 |
("Eiffel Tower", "Champ de Mars"): 9,
|
| 23 |
("Champ de Mars", "Musée de l'Orangerie"): 11,
|
| 24 |
("Musée de l'Orangerie", "Pont Alexandre III"): 8,
|
|
|
|
| 17 |
"""
|
| 18 |
# This is a placeholder function. In a real scenario, this function would call a tool to get the actual walking time.
|
| 19 |
# For now, we'll use predefined walking times for simplicity.
|
| 20 |
+
walking_times = {
|
|
|
|
| 21 |
("Eiffel Tower", "Champ de Mars"): 9,
|
| 22 |
("Champ de Mars", "Musée de l'Orangerie"): 11,
|
| 23 |
("Musée de l'Orangerie", "Pont Alexandre III"): 8,
|