Skip to content

Commit

Permalink
Update welcome message in alternative_helper.py
Browse files Browse the repository at this point in the history
  • Loading branch information
lperezmo committed Jan 18, 2024
1 parent 14f4049 commit bde8008
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions alternative_helper.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ def process_incoming_message(PIN, incoming_message, send_to, send_from):
return """Welcome to the new Luis AI reminder assistant.
- I can schedule calls and text reminders for you.
- I can also just answer questions.
- Text 'info' to see this message again"""
- Text 'about' to see this message again"""
else:
messages = CLIENT.messages.list(from_=send_to, to=send_from)
sent_pin = False
Expand All @@ -55,7 +55,7 @@ def process_incoming_message(PIN, incoming_message, send_to, send_from):
incoming_message=incoming_message)
return follow_up_reply
else:
return f"Please provide security PIN to continue. Hint: {PIN}"
return f"Please provide security PIN to continue."

#------------------------------------#
# Current time
Expand Down Expand Up @@ -166,11 +166,11 @@ def get_follow_up_text(send_to, send_from, incoming_message):
message : str
Response from the AI to the user
"""
if incoming_message == 'info':
if incoming_message == 'about':
return """Welcome to the new Luis AI reminder assistant.
- I can schedule calls and text reminders for you.
- I can answer any questions, within reason.
- Text 'info' to see this message again"""
- Text 'about' to see this message again"""
else:
tools = [
{
Expand Down

0 comments on commit bde8008

Please sign in to comment.