jeremierostan commited on
Commit
5bd601b
1 Parent(s): be1f678

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -3
app.py CHANGED
@@ -44,9 +44,8 @@ def chat_with_assistant(message, history):
44
  context = "\n".join(relevant_chunks)
45
 
46
  # Prepare the system message
47
- system_message = f"""You are an AI assistant answering questions based on a reference document.
48
- You provide short, clear answers in simple language.
49
- Use the following as context for all of your answers:
50
  {context}
51
  """
52
 
 
44
  context = "\n".join(relevant_chunks)
45
 
46
  # Prepare the system message
47
+ system_message = f"""You are a helpful assistant.
48
+ Use the following as context for your answers:
 
49
  {context}
50
  """
51