Skip to content

Latest commit

 

History

History
158 lines (114 loc) · 2.97 KB

README.md

File metadata and controls

158 lines (114 loc) · 2.97 KB

Application examples

Here listed some examples that demonstrate NaifJs features.

Each project directory contains:

  • one or more dialog units
  • show: bash script that show the application info
  • shell: bash script to run the application, to test it on the command line
  • The NaifJs Hello World
  • 1-state dialog
  • Get user name and terminate
examples/
├── getUserName
│   ├── getUserName.js
│   ├── show
│   └── shell

To test the dialog unit:

$ examples/getUserName/shell
  • Hello World with timeout
  • 1-state dialog
  • Get user name and terminate
  • Show how to implement prompt timeout management
examples/
├── getUserNameTimeout
│   ├── getUserName.js
│   ├── show
│   └── shell

To test the dialog unit:

$ examples/getUserNameTimeout/shell
  • The application is a small part of an interactive storyline, originally made in Italian language
  • It's made by 2 interconnected dialog units
  • Demonstrate how to link 2 different dialog units
  • Show how to set and get a dialog unit variable
  • naif shell run with --silent flag
examples/
└── story_it
    ├── firstUnit.js
    ├── firstUnit.script
    ├── lib
    │   └── random.js
    ├── README.md
    ├── secondUnit.js
    ├── secondUnit.script
    ├── show
    ├── shell
    └── UNITS.script

To test the dialog unit:

$ examples/story_it/shell
  • English version of previous app.
examples/
├── story_en
│   ├── firstUnit.js
│   ├── lib
│   │   └── random.js
│   ├── README.md
│   ├── secondUnit.js
│   ├── show
│   └── shell

To test the dialog unit:

$ examples/story_en/shell
  • The dialog just shell if user spoken or texted, inspecting the speech attribute in the RequestDataObject.

    Trick: To simulate a speech input with the command line utility: naif test shell, just input ALL CAPS.

examples/
├── textOrSpeech.js
│   ├── show
│   └── shell

To test the dialog unit:

$ examples/textOrSpeech/shell

⚠️ To be completed.

  • TODO notify user asynchronously
  • Show how to push user with unsolicited messages/dialogues
  • The "dialog", triggered by a cron-based, simply activates the previous example 1 (Hello world).
examples/
├── notify.js
│   ├── show
│   └── shell

⚠️ To be completed.

  • TODO Just a draft script that mimic Google Home reminder dialog.
examples/
├── promemoria
│   └── promemoria.script

top | home