OpenVoiceOS companion plugin for OpenVoiceOS STT Server
pip install ovos-stt-plugin-server
"stt": {
"module": "ovos-stt-plugin-server",
"ovos-stt-plugin-server": {"url": "https://0.0.0.0:8080/stt"},
"verify_ssl": true
}
Please note that while you can set verify_ssl
to false
to disable SSL
verification, this is not recommended and should only be used for testing
purposes. Consider using a private CA or certificates signed using
Let's Encrypt instead.
public server status page can be found at https://github.com/OpenVoiceOS/status
the default public servers run Whisper, but Nemo is also available
While there are associated risks with public servers, we value your trust in our products, learn more in Jarbas blog post The Trust Factor in Public Servers
see google-stt-proxy for an example
FROM debian:buster-slim
RUN apt-get update && \
apt-get install -y git python3 python3-dev python3-pip curl build-essential
RUN pip3 install ovos-stt-http-server==0.0.2a1
RUN pip3 install SpeechRecognition==3.8.1
COPY . /tmp/ovos-stt-chromium
RUN pip3 install /tmp/ovos-stt-chromium
ENTRYPOINT ovos-stt-server --engine ovos-stt-plugin-chromium
```tts