|
7 | 7 | 
|
8 | 8 |
|
9 | 9 | # About Jarvis 🧠
|
10 |
| -Jarvis is a voice assistant service in [Python 3.5+](https://www.python.org/downloads/release/python-360/) |
| 10 | +Jarvis is a voice commanding assistant service in [Python 3.5+](https://www.python.org/downloads/release/python-360/) |
11 | 11 | It can understand human speech, talk to user and execute basic commands.
|
12 | 12 |
|
13 | 13 | #### Assistant Skills
|
@@ -36,7 +36,7 @@ It can understand human speech, talk to user and execute basic commands.
|
36 | 36 | * **Change settings on runtime** (e.g 'Jarvis change settings')
|
37 | 37 |
|
38 | 38 | #### Assistant Features
|
39 |
| -* **Asynchronous command execution & speech interruption** |
| 39 | +* **Asynchronous command execution & speech recognition and interpretation** |
40 | 40 | * Supports **two different user input modes (text or speech)**, user can write or speek in the mic.
|
41 | 41 | * Answers in **general questions** (via call Wolfram API), e.g ('Jarvis tell me the highest building')
|
42 | 42 | * **Change input mode on run time**, triggered by a phrase e.g 'Jarvis change settings')
|
@@ -72,15 +72,15 @@ bash setup.sh
|
72 | 72 | nano Jarvis/src/jarvis/jarvis/setting.py
|
73 | 73 | ```
|
74 | 74 |
|
75 |
| -### Start voice assistant |
| 75 | +### Start voice commanding assistant |
76 | 76 | 
|
77 | 77 |
|
78 | 78 | * Start the assistant service:
|
79 | 79 | ```bash
|
80 | 80 | bash run_jarvis.sh
|
81 | 81 | ```
|
82 | 82 |
|
83 |
| -### How to add a new Skill |
| 83 | +### How to add a new Skill to assistant |
84 | 84 | You can easily add a new skill in two steps.
|
85 | 85 | * Create a new configurationin SKILLS in **skills/registry.py**
|
86 | 86 | ```python
|
|
0 commit comments