Spaces:
Sleeping
Sleeping
fix: structure_daily_tasks_tool docstring args description
Browse files
app.py
CHANGED
|
@@ -14,9 +14,9 @@ def structure_daily_tasks_tool(tasks: list[str], start_time: str, end_time: str)
|
|
| 14 |
Structure daily tasks within a given time frame.
|
| 15 |
|
| 16 |
Args:
|
| 17 |
-
tasks
|
| 18 |
-
start_time
|
| 19 |
-
end_time
|
| 20 |
|
| 21 |
Returns:
|
| 22 |
str: A string representing the schedule of tasks with start and end times.
|
|
|
|
| 14 |
Structure daily tasks within a given time frame.
|
| 15 |
|
| 16 |
Args:
|
| 17 |
+
tasks: A list of tasks to be scheduled.
|
| 18 |
+
start_time: The start time in the format "HH:MM".
|
| 19 |
+
end_time: The end time in the format "HH:MM".
|
| 20 |
|
| 21 |
Returns:
|
| 22 |
str: A string representing the schedule of tasks with start and end times.
|