Thomas Pierson d8af8276a1 Make all tests pass by fixing import paths in latest added files. 8 năm trước cách đây
..
tests d8af8276a1 Make all tests pass by fixing import paths in latest added files. 8 năm trước cách đây
README.md 7683f70a3d Change the project structure to match the Python package standard. 8 năm trước cách đây
__init__.py 7683f70a3d Change the project structure to match the Python package standard. 8 năm trước cách đây
say.py c6f0598d8e fix the import path for the new layout. ex: 'from kalliope.core…' unstead of 'from core' 8 năm trước cách đây

README.md

say

Synopsis

This neuron is the mouth of Kalliope and uses the TTS to say the given message.

Options

parameter required default choices comment
message YES A list of messages Kalliope could say

Return Values

No returned values

Synapses example

Simple example :

- name: "Say-hello"
  signals:
    - order: "hello"
  neurons:
    - say:
        message:
          - "Hello Sir"     

With a multiple choice list, Kalliope will pick one randomly:

- name: "Say-hello"
  signals:
    - order: "hello"
  neurons:
    - say:
        message:
          - "Hello Sir"
          - "Welcome Sir"
          - "Good morning Sir"

Notes

Note: The neuron does not return any values. Note: Kalliope randomly takes a message from the list