Lightweight, developer-friendly wake word detection built on openWakeWord.
Project description
wakewordkit
Lightweight, developer-friendly wake word detection built on openWakeWord.
Ships with every default openWakeWord wake word and lets you plug in your own trained models through the same tiny API. Requires Python 3.12+.
Install
pip install wakewordkit # core
pip install 'wakewordkit[mic]' # + microphone input
Quick start
from wakewordkit import WakeWordDetector, WakeWord
detector = WakeWordDetector(WakeWord.ALEXA)
for detection in detector.listen():
print(f"{detection.name} ({detection.score:.2f})")
listen() opens the default microphone (requires the mic extra) and yields a
Detection every time a wake word is heard.
Built-in wake words
WakeWord.ALEXA
WakeWord.HEY_JARVIS
WakeWord.HEY_MYCROFT
WakeWord.HEY_MARVIN
Listen for several at once, or leave it empty to listen for all of them:
WakeWordDetector(WakeWord.HEY_JARVIS, WakeWord.HEY_MYCROFT)
WakeWordDetector() # all built-in wake words
Custom wake words
Point CustomWakeWord at any openWakeWord-compatible .onnx model:
from wakewordkit import WakeWordDetector, WakeWord, CustomWakeWord
detector = WakeWordDetector(
WakeWord.ALEXA,
CustomWakeWord("hey_computer", "models/hey_computer.onnx"),
threshold=0.6,
)
for detection in detector.listen():
print(detection.name) # "alexa" or "hey_computer"
Bring your own audio
Skip the built-in microphone and feed raw 16 kHz mono PCM yourself. Frames may
be bytes (int16) or a NumPy array, ideally 1280 samples (80 ms) each.
detector = WakeWordDetector(WakeWord.HEY_JARVIS)
# Frame at a time
if detection := detector.process(frame):
handle(detection)
# Or stream from any iterable of frames
for detection in detector.stream(my_audio_source):
handle(detection)
Microphone is only one implementation of the AudioInput interface. Subclass
it to plug in any source — a socket, a file, another capture library — and pass
it to listen():
from wakewordkit import AudioInput, WakeWordDetector, WakeWord
class FileInput(AudioInput):
def __init__(self, path):
self._reader = open_pcm(path)
def read(self):
frame = self._reader.read(1280)
if not frame:
raise StopIteration
return frame
detector = WakeWordDetector(WakeWord.HEY_MYCROFT)
for detection in detector.listen(FileInput("recording.pcm")):
handle(detection)
Override __enter__ / __exit__ for setup and teardown; read() is the only
required method.
API
| Object | Purpose |
|---|---|
WakeWord |
Enum of built-in wake words. |
CustomWakeWord(name, model) |
Wraps a custom .onnx model under a chosen name. |
WakeWordDetector(*wake_words, threshold=0.5, vad_threshold=0.0, cooldown=1.5) |
The detector. |
WakeWordDetector.listen(source=None) |
Iterate detections from an AudioInput (defaults to Microphone). |
WakeWordDetector.stream(source) |
Iterate detections from your own frames. |
WakeWordDetector.process(frame) |
Score a single frame, returns Detection or None. |
WakeWordDetector.reset() |
Clear detection state. |
Detection(name, score) |
A single detection result. |
AudioInput |
Abstract audio source; implement read(). |
Microphone(*, samplerate=16000, frame_size=1280, device=None) |
Context-managed 16 kHz mic (AudioInput). |
vad_threshold (0 disables) turns on openWakeWord's Silero voice-activity
filter to suppress non-speech false triggers. cooldown is the minimum number
of seconds between two detections, so a single utterance triggers only once.
Development
uv sync --dev
uv run pytest
See CONTRIBUTING.md for the full workflow.
License
MIT — see LICENSE.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file wakewordkit-0.1.0.tar.gz.
File metadata
- Download URL: wakewordkit-0.1.0.tar.gz
- Upload date:
- Size: 45.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.9.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1fbb71ee3a636ffb7fc881c68afc818678ff5d2be6be76dc9bda6b74df9bebc0
|
|
| MD5 |
399b0faeaca3e1ded9b51934a1cf4472
|
|
| BLAKE2b-256 |
585f2039e2bf6748514422779cd83a7731f6433036d50341c6d53c2f1dbdb9ad
|
File details
Details for the file wakewordkit-0.1.0-py3-none-any.whl.
File metadata
- Download URL: wakewordkit-0.1.0-py3-none-any.whl
- Upload date:
- Size: 6.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.9.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4d011ed8500f47413075469ca465d97c0f290ced6c36ba74b4c2e797b83fb2ee
|
|
| MD5 |
1c00ef0c199369353dabd30de751c125
|
|
| BLAKE2b-256 |
29c17749516bda5b64899ad4ede448f09e7bb7f4489a75f58c84ad13a99bbd5e
|