Upload README.md
Browse files
README.md
CHANGED
|
@@ -1,3 +1,15 @@
|
|
| 1 |
-
---
|
| 2 |
-
|
| 3 |
-
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# viet-robot-task-priority-scheduler
|
| 2 |
+
|
| 3 |
+
A simple rule-based scheduler that sorts tasks by priority and source.
|
| 4 |
+
|
| 5 |
+
Function:
|
| 6 |
+
|
| 7 |
+
```python
|
| 8 |
+
schedule_tasks(tasks: list[Task]) -> list[ScheduledTask]
|
| 9 |
+
```
|
| 10 |
+
|
| 11 |
+
Critical tasks and user-initiated tasks are placed first.
|
| 12 |
+
|
| 13 |
+
## License
|
| 14 |
+
|
| 15 |
+
MIT
|