mirror of
https://github.com/leon-ai/leon.git
synced 2024-12-19 23:01:31 +03:00
30 lines
439 B
Markdown
30 lines
439 B
Markdown
|
# Hotword
|
||
|
|
||
|
This node enables the wake word "Leon". Once this is running, you can
|
||
|
call Leon by saying his name according to the language you chose.
|
||
|
## Getting Started
|
||
|
|
||
|
### Installation
|
||
|
|
||
|
```sh
|
||
|
# Install
|
||
|
npm run setup:offline-hotword
|
||
|
```
|
||
|
|
||
|
### Usage
|
||
|
|
||
|
```sh
|
||
|
# From the project root:
|
||
|
|
||
|
# Run main server
|
||
|
npm run build && npm start
|
||
|
|
||
|
# Go to http://localhost:1337
|
||
|
|
||
|
# Run hotword node
|
||
|
npm run wake
|
||
|
|
||
|
# Say "Leon" via your microphone
|
||
|
# Triggered!
|
||
|
```
|