diff options
| -rw-r--r-- | README.md | 8 | ||||
| -rw-r--r-- | client/main.py | 5 |
2 files changed, 11 insertions, 2 deletions
@@ -3,7 +3,13 @@ jasper-client Client code for the Jasper voice computing platform. Jasper is an open source platform for developing always-on, voice-controlled applications. -Learn more at [jasperproject.github.io](http://jasperproject.github.io/), where we have assembly and installation instructions, as well as extensive documentation. +Learn more at [jasperproject.github.io](http://jasperproject.github.io/), where we have assembly and installation instructions, as well as extensive documentation. For the relevant disk image, please visit [SourceForge](http://sourceforge.net/projects/jasperproject/). + +## Contributing + +If you'd like to contribute to Jasper, we've created a Contributing Guide, available [here](https://github.com/jasperproject/jasper-client/blob/master/CONTRIBUTING.md). It outlines the philosophies to preserve, tests to run, and more. If you're looking for potential features to build, we've included some recommendations there as well. + +We highly recommend reading through this guide before writing any code. Thanks in advance for any and all work you contribute to Jasper! ## Contact diff --git a/client/main.py b/client/main.py index 35ef715..6ba3645 100644 --- a/client/main.py +++ b/client/main.py @@ -24,7 +24,10 @@ if __name__ == "__main__": mic = Mic(speaker.newSpeaker(), "languagemodel.lm", "dictionary.dic", "languagemodel_persona.lm", "dictionary_persona.dic") - mic.say("How can I be of service?") + addendum = "" + if 'first_name' in profile: + addendum = ", %s" % profile["first_name"] + mic.say("How can I be of service%s?" % addendum) conversation = Conversation("JASPER", mic, profile) |
