summaryrefslogtreecommitdiff
path: root/client/main.py
diff options
context:
space:
mode:
authorschneefux <schneefux+commit@schneefux.xyz>2014-06-12 21:36:51 +0200
committerschneefux <schneefux+commit@schneefux.xyz>2014-06-12 21:36:51 +0200
commitae0b469d25e3b9136a243876004b34ebc546c642 (patch)
tree2b5b33f9783d6b3d7abbc4f0161e6f52a0f8b12a /client/main.py
parent1744368ac1889fe0767f04d55e8f928553c8db1c (diff)
downloadjasper-client-ae0b469d25e3b9136a243876004b34ebc546c642.tar.gz
jasper-client-ae0b469d25e3b9136a243876004b34ebc546c642.zip
Make Jasper mention the user's name when asking "How can I be of service?"
Diffstat (limited to 'client/main.py')
-rw-r--r--client/main.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/client/main.py b/client/main.py
index c5805c4..75ee9f6 100644
--- a/client/main.py
+++ b/client/main.py
@@ -23,7 +23,7 @@ if __name__ == "__main__":
mic = Mic("languagemodel.lm", "dictionary.dic",
"languagemodel_persona.lm", "dictionary_persona.dic")
- mic.say("How can I be of service?")
+ mic.say("How can I be of service, %s?" % (profile["first_name"]))
conversation = Conversation("JASPER", mic, profile)