hazel-longmeier commited on
Commit
c07114f
·
verified ·
1 Parent(s): d508b0b

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -99,10 +99,10 @@ def query_model(question):
99
  Process a question, find relevant information, and generate a response.
100
  """
101
  if question == "":
102
- return "Welcome to ChessBot! Ask me anything about chess rules, strategies, and terminology."
103
  relevant_segment = find_relevant_segment(question, segments)
104
  if not relevant_segment:
105
- return "Could not find specific information. Please refine your question."
106
  response = generate_response(question, relevant_segment)
107
  return response
108
 
 
99
  Process a question, find relevant information, and generate a response.
100
  """
101
  if question == "":
102
+ return "Hello! I am your time manager Timify! Please enter your activities, time you have to complete them, and your prioritized activities."
103
  relevant_segment = find_relevant_segment(question, segments)
104
  if not relevant_segment:
105
+ return "Could not find specific information. Please refine your requirements."
106
  response = generate_response(question, relevant_segment)
107
  return response
108