Upload README.md
Browse files
README.md
CHANGED
|
@@ -1,3 +1,23 @@
|
|
| 1 |
-
|
| 2 |
-
|
| 3 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# viet-robot-command-intent-router
|
| 2 |
+
|
| 3 |
+
A micro rule-based text classifier that maps short Vietnamese/English
|
| 4 |
+
voice commands to a coarse intent label:
|
| 5 |
+
|
| 6 |
+
- `clean_room`
|
| 7 |
+
- `go_dock`
|
| 8 |
+
- `play_music`
|
| 9 |
+
- `answer_question`
|
| 10 |
+
- `small_talk`
|
| 11 |
+
- `other`
|
| 12 |
+
|
| 13 |
+
Function:
|
| 14 |
+
|
| 15 |
+
```python
|
| 16 |
+
route_intent(text: str) -> Intent
|
| 17 |
+
```
|
| 18 |
+
|
| 19 |
+
Intended as a toy baseline for intent routing.
|
| 20 |
+
|
| 21 |
+
## License
|
| 22 |
+
|
| 23 |
+
MIT
|