diff --git a/OpenJibo/src/Jibo.Cloud/dotnet/src/Jibo.Cloud.Application/Services/JiboInteractionService.IntentRouting.cs b/OpenJibo/src/Jibo.Cloud/dotnet/src/Jibo.Cloud.Application/Services/JiboInteractionService.IntentRouting.cs index 82c793f..12f8cd0 100644 --- a/OpenJibo/src/Jibo.Cloud/dotnet/src/Jibo.Cloud.Application/Services/JiboInteractionService.IntentRouting.cs +++ b/OpenJibo/src/Jibo.Cloud/dotnet/src/Jibo.Cloud.Application/Services/JiboInteractionService.IntentRouting.cs @@ -835,11 +835,19 @@ public sealed partial class JiboInteractionService "what's up", "what s up", "what up", + "how is it going", + "how's it going", "how are things", "how's things", "how is things", + "how are you feeling", + "how is your mood", "how is your day", - "how's your day")) + "how's your day", + "how's life", + "how is life", + "how's everything", + "how is everything")) return "how_are_you"; if (MatchesAny( diff --git a/OpenJibo/src/Jibo.Cloud/dotnet/src/Jibo.Cloud.Infrastructure/Content/InMemoryJiboExperienceContentRepository.cs b/OpenJibo/src/Jibo.Cloud/dotnet/src/Jibo.Cloud.Infrastructure/Content/InMemoryJiboExperienceContentRepository.cs index d1dc7e4..a8eab95 100644 --- a/OpenJibo/src/Jibo.Cloud/dotnet/src/Jibo.Cloud.Infrastructure/Content/InMemoryJiboExperienceContentRepository.cs +++ b/OpenJibo/src/Jibo.Cloud/dotnet/src/Jibo.Cloud.Infrastructure/Content/InMemoryJiboExperienceContentRepository.cs @@ -134,7 +134,10 @@ public sealed class InMemoryJiboExperienceContentRepository : IJiboExperienceCon [ "I am feeling cheerful and robotic.", "I am doing great. Thanks for asking.", - "I am feeling bright-eyed and ready to help." + "I am feeling bright-eyed and ready to help.", + "I am having a pretty good day so far.", + "I am feeling lively and ready for the next thing.", + "Things are going nicely. Thanks for checking in." ], PersonalityReplies = [ diff --git a/OpenJibo/tests/Jibo.Cloud.Tests/WebSockets/JiboInteractionServiceTests.cs b/OpenJibo/tests/Jibo.Cloud.Tests/WebSockets/JiboInteractionServiceTests.cs index c5b942e..cc66a97 100644 --- a/OpenJibo/tests/Jibo.Cloud.Tests/WebSockets/JiboInteractionServiceTests.cs +++ b/OpenJibo/tests/Jibo.Cloud.Tests/WebSockets/JiboInteractionServiceTests.cs @@ -843,6 +843,9 @@ public sealed class JiboInteractionServiceTests [Theory] [InlineData("how are things")] [InlineData("how is your day")] + [InlineData("how is it going")] + [InlineData("how are you feeling")] + [InlineData("how's everything")] public async Task BuildDecisionAsync_MoodSmallTalk_RoutesThroughHowAreYouPath(string transcript) { var service = CreateService();