diff --git a/CSharp/Hangover.cs b/CSharp/Hangover.cs index 7e954d6..ef94395 100644 --- a/CSharp/Hangover.cs +++ b/CSharp/Hangover.cs @@ -16,12 +16,7 @@ const string numberOfBoss = "+xxx"; TwilioClient.Init(twilioAccountSid, authToken); -string[] excuses = { - "Locked out", - "Pipes broke", - "Food poisoning", - "Not feeling well" -}; +var excuses = await new ChatGpt().GetExcusesToMyBoss(); var rand = new Random().Next(excuses.Length); var message = $"Gonna work from home. {excuses[rand]}";