mgetz commited on
Commit
0d377cf
·
verified ·
1 Parent(s): 9411567

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -63,7 +63,7 @@ def generate_response(user_query, relevant_segment):
63
  Generate a response emphasizing the bot's capability in providing chess information.
64
  """
65
  try:
66
- system_message = "You are a celebrity chatbot specialized in providing the names of celebrities based on descriptions of their physical characteristics provided by the user."
67
  user_message = f"Here's the information on chess: {relevant_segment}"
68
  messages = [
69
  {"role": "system", "content": system_message},
@@ -88,7 +88,7 @@ def query_model(question):
88
  Process a question, find relevant information, and generate a response.
89
  """
90
  if question == "":
91
- return "Welcome to CelebrityFinder! Give me a list of physical attributes of a celebrity, and I'll give you a name that matches."
92
  relevant_segment = find_relevant_segment(question, segments)
93
  if not relevant_segment:
94
  return "Could not find specific information. Please refine your question."
 
63
  Generate a response emphasizing the bot's capability in providing chess information.
64
  """
65
  try:
66
+ system_message = "You are a celebrity chatbot specialized in providing a few names of celebrities based on descriptions of their physical characteristics provided by the user."
67
  user_message = f"Here's the information on chess: {relevant_segment}"
68
  messages = [
69
  {"role": "system", "content": system_message},
 
88
  Process a question, find relevant information, and generate a response.
89
  """
90
  if question == "":
91
+ return "Welcome to CelebrityFinder! Give me some physical attributes of a celebrity, and I'll give you some names that match your description."
92
  relevant_segment = find_relevant_segment(question, segments)
93
  if not relevant_segment:
94
  return "Could not find specific information. Please refine your question."