diff options
| -rw-r--r-- | client/main.py | 2 |
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) |
