This is the syntax used to run Kalliope from command line
cd /path/to/kalliope
python kalliope.py command --option <argument>
For example, to start Kalliope we simply use
python kalliope.py start
Start Kalliope main program
Example of use
python kalliope.py start
To kill Kalliope, you can press "Ctrl-C" on your keyboard.
Launch the Kalliope shell Graphical User Interface. The GUI allows you to test your STT and TTS that you have configured in settings.yml file of Kalliope.
Example of use
python kalliope.py gui
Commands can be completed by the following options:
Run a specific synapse from the brain file.
Example of use
python kalliope.py start --run-synapse "say hello"
Replace the default brain file from the root of the project folder by a custom one.
Important note: The path must be absolute. The absolute path contains the root directory and all other subdirectories in which a file or folder is contained.
Example of use
python kalliope.py start --brain-file /home/me/my_other_brain.yml
You can combine the options together like, for example:
python kalliope.py start --run-synapse "say hello" --brain-file /home/me/my_other_brain.yml
Show debug output in the console
Example of use
python kalliope.py start --debug