Koen Vervloesem

Results 30 issues of Koen Vervloesem

**Version** Snips Flow 1.1.2 (0.62.3), default TTS provider picotts Raspbian 9.8 **How to reproduce** On a Pi, Snips Flow installed (audioserver and tts at least) mosquitto_pub -t 'hermes/tts/say' -m '{"text":...

type: bug
sub: tts

**What's the issue?** When someone (accidentally) deletes `/var/lib/snips/skills`, sam is not able to deploy an assistant anymore: ``` bash: line 0: cd: /var/lib/snips/skills/: No such file or directory fatal: could...

type: enhancement
sub: sam

I installed Plume in a public directory on my Solid server, created a public directory for the blog posts and moved the config-example.json to config.json and referred to the right...

See https://community.rhasspy.org/t/helper-library-to-develop-rhasspy-apps-in-python/969/39?u=koan. The [rhasspy/asr///audioCaptured](https://rhasspy.github.io/rhasspy-voltron/reference.html#asr_audiocaptured) topic lets you get a hold of the recorded WAV data from a voice command for a session.

enhancement

From [the forum](https://community.rhasspy.org/t/helper-library-to-develop-rhasspy-apps-in-python/969/76): > It would be great if there were a parameter in the decorator to say the system “payload is json” and it doing the json-load and decode...

enhancement
good first issue

Something like this could be interesting for some use case: ```python @app.on_intent("megaApp", prefix = True) ``` This would then subscribe to intents `megaApp/GetTime`, `megaApp/GetDate` and so on. Suggested by @JonahKr...

enhancement
question

Let the app load its intents/slots/… from a file and re-train Rhasspy on installation/startup of the app. See https://github.com/rhasspy/rhasspy-hermes/issues/12

enhancement

See [the forum](https://community.rhasspy.org/t/helper-library-to-develop-rhasspy-apps-in-python/969/88). Quoting @DanielWe2: > One idea would be: add a new parameter “supported_slots” to the decorator. > > Could look like this: > > @app.on_intent("StartTimer", supported_slots=["minutes", "seconds"]) >...

enhancement

The library could come with a command-line program that can automatically: - create a systemd service file for an app - create a Dockerfile for an app This makes it...

enhancement

Currently parameters such as the MQTT connection settings are specified as command line arguments. Maybe it should be possible too to specify parameters another way?

question