node-red-contrib-viseo-sarah

0.3.0 • Public • Published

Node-RED

[channel] SARAH home automation channel nodes.

Node-RED nodes to trigger windows .exe command line interface (CLI) for SARAH

This module is part of project node-red-contrib-viseo powered by VISEO Technologies.

This module is the v5 of SARAH project

Quick Start

npm install node-red-contrib-viseo-sarah

Getting Started

Speak

The speak node is a windows CLI that use Microsoft Speech Synthesis to perform Speech to Text with the field defined in input parameter. By default msg.payload

Speak

The process will use the default windows 32bit voice (even on windows 64bit). To select a voice run following command %windir%\SysWOW64\speech\SpeechUX\sapi.cpl

Listen

The listen node is a windows CLI that use Microsoft Speech Engine to trigger action matching given grammar (voice command).

  • Grammars are located in /data/grammar of the bot's folder
  • Only grammar matching given local fr-FR are loaded
  • The default HotWord (SARAH) can be overrided wy something else
  • Speech recognition must be greater than the given confidence (0.7)

Parameters defined in a grammar will be available in the payload.

Listen

15/10/2017: In the next version, I will add rule name in the flow.

Sample meteo.xml (in french)

<grammar version="1.0" xml:lang="fr-FR" mode="voice" root="ruleMeteo" xmlns="http://www.w3.org/2001/06/grammar" tag-format="semantics/1.0">
  <rule id="ruleMeteo" scope="public">
    <example>Sarah quelle est la météo pour demain ?</example>
    <tag>out.action=new Object(); </tag>
    
    <item>Sarah</item>
    
    <one-of>
      <item>quelle est la météo</item>
      <item>est-ce qu'il pleut</item>
    </one-of>

    <item repeat="0-1">
      <one-of>
        <item>aujourd'hui<tag>out.action.date="0";</tag></item>
        <item>après demain<tag>out.action.date="2_matin";</tag></item>
      </one-of>
    </item>
    
    <tag>out.action._attributes.uri="http://127.0.0.1:8080/sarah/meteo";</tag>
  </rule> 
</grammar>

Keyword Spotting (HotWord)

Microsoft Speech Engine allow wildcard in grammars. This will allow free speech commands. This sample provide a WeshGros keyword (aka Yo Bitch in english)

<grammar version="1.0" xml:lang="fr-FR" mode="voice"  root="ruleWildcard" xmlns="http://www.w3.org/2001/06/grammar" tag-format="semantics/1.0">
  <rule id="ruleWildcard" scope="public">
      <tag>out.action=new Object(); </tag>
      <item>Oueche gro <ruleref special="GARBAGE" /></item> 
  </rule>
</grammar>

You can pipe the grammar output buffer to an online Speech2Text (like Google or Bing speech) then pipe to API.ai, LUIS or any other NLP. Then according to NLP's intent and entity you can answer something

Listen

This is a very simple flow. You should connect that flow to a cloud server using WebSocket in order to centralize logic in the cloud. You can also add more connector like Messenger, Slack, GoogleHome, ... to that cloud server.

TODO

  • Add ruleName in the flow
  • Update listen.exe to return a JSON of XML Path
  • Add a listen node taking a grammar as input
  • Add an option to stop process after first match
  • Add an option to stop/start listening
  • How to retrieve grammar from third party plugins (spreads everywhere) ?
  • Nodes listen/speak should use SocketIO or DirectLine to communicate with a Server. In case of SocketIO we should add an algorithm to handle replies and prompts.

Getting Help

A documentation is available on this Wiki.

For further help, or general discussion, please use the github issue tracker and in order to be labeled with question tag please specify :

  • Your message is a question / discussion
  • The module or node name

Contributing

This project adheres to the Contributor Covenant 1.4. By participating, you are expected to uphold this code. Please report unacceptable behavior to any of the project's core team.

Authors

This project is a creation of VISEO Technology.

Copyright and license

Copyright 2016-2019 VISEO under the Apache 2.0 license. Copyright 2012-2019 SARAH under the Apache 2.0 license.

Readme

Keywords

Package Sidebar

Install

npm i node-red-contrib-viseo-sarah

Weekly Downloads

1

Version

0.3.0

License

Apache-2.0

Unpacked Size

1.16 MB

Total Files

21

Last publish

Collaborators

  • jpencausse
  • klervix
  • tothi-viseo