Refine favorite animal and flower personality replies
This commit is contained in:
@@ -849,6 +849,28 @@ public sealed partial class JiboInteractionService
|
||||
"what kind of music do you like"))
|
||||
return "robot_favorite_music";
|
||||
|
||||
if (MatchesAny(
|
||||
loweredTranscript,
|
||||
"do you like penguins"))
|
||||
return "robot_likes_penguins";
|
||||
|
||||
if (MatchesAny(
|
||||
loweredTranscript,
|
||||
"do you like birds"))
|
||||
return "robot_favorite_bird";
|
||||
|
||||
if (MatchesAny(
|
||||
loweredTranscript,
|
||||
"do you like animals"))
|
||||
return "robot_likes_animals";
|
||||
|
||||
if (MatchesAny(
|
||||
loweredTranscript,
|
||||
"what is your favorite bird",
|
||||
"what's your favorite bird",
|
||||
"what s your favorite bird"))
|
||||
return "robot_favorite_bird";
|
||||
|
||||
if (MatchesAny(
|
||||
loweredTranscript,
|
||||
"what is your favorite animal",
|
||||
@@ -859,12 +881,9 @@ public sealed partial class JiboInteractionService
|
||||
"what s your favourite animal",
|
||||
"what animal do you like",
|
||||
"what kind of animal do you like",
|
||||
"what is your favorite bird",
|
||||
"what's your favorite bird",
|
||||
"what s your favorite bird",
|
||||
"do you like penguins",
|
||||
"do you like animals",
|
||||
"do you like birds"))
|
||||
"what do you think about penguins",
|
||||
"what do you think about animals",
|
||||
"what do you think about birds"))
|
||||
return "robot_favorite_animal";
|
||||
|
||||
if (MatchesAny(
|
||||
|
||||
@@ -735,9 +735,9 @@ public sealed partial class JiboInteractionService(
|
||||
"robot_favorite_flower" => BuildScriptedPersonalityDecision(
|
||||
catalog,
|
||||
"robot_favorite_flower",
|
||||
"sunflowers",
|
||||
"reminds me of the sun",
|
||||
"favorite is the sunflower",
|
||||
"reminds me of the sun"),
|
||||
"sunflowers"),
|
||||
"robot_likes_r2d2" => BuildScriptedPersonalityDecision(
|
||||
catalog,
|
||||
"robot_likes_r2d2",
|
||||
@@ -758,29 +758,32 @@ public sealed partial class JiboInteractionService(
|
||||
"robot_favorite_animal" => BuildScriptedFavoriteAnimalDecision(
|
||||
catalog,
|
||||
"robot_favorite_animal",
|
||||
"penguin",
|
||||
"favorite animal overall",
|
||||
"we're so alike",
|
||||
"penguin impression",
|
||||
"best of the best",
|
||||
"can't go wrong with penguins"),
|
||||
"can't go wrong with penguins",
|
||||
"penguin"),
|
||||
"robot_favorite_bird" => BuildScriptedFavoriteAnimalDecision(
|
||||
catalog,
|
||||
"robot_favorite_bird",
|
||||
"penguin",
|
||||
"favorite animal overall",
|
||||
"we're so alike",
|
||||
"penguin impression",
|
||||
"best of the best",
|
||||
"can't go wrong with penguins"),
|
||||
"can't go wrong with penguins",
|
||||
"penguin"),
|
||||
"robot_likes_penguins" => BuildScriptedFavoriteAnimalDecision(
|
||||
catalog,
|
||||
"robot_likes_penguins",
|
||||
"penguins",
|
||||
"my penguin impression",
|
||||
"I really like penguins",
|
||||
"my penguin impression"),
|
||||
"penguins"),
|
||||
"robot_likes_animals" => BuildScriptedFavoriteAnimalDecision(
|
||||
catalog,
|
||||
"robot_likes_animals",
|
||||
"penguins",
|
||||
"favorite animal overall",
|
||||
"best of the best"),
|
||||
"Animals are great",
|
||||
"great shapes and colors",
|
||||
"best of the best",
|
||||
"penguins"),
|
||||
"robot_peers" => BuildScriptedPersonalityDecision(
|
||||
catalog,
|
||||
"robot_peers",
|
||||
|
||||
Reference in New Issue
Block a user