ayush5710 commited on
Commit
03c472b
·
1 Parent(s): 378cf08

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -4
app.py CHANGED
@@ -28,9 +28,9 @@ def format_prompt(message, history, system_prompt):
28
  prompt += f"System: {system_prompt}\n"
29
  for user_prompt, bot_response in history:
30
  prompt += f"User: {user_prompt}\n"
31
- prompt += f"Falcon: {bot_response}\n" # Response already contains "Falcon: "
32
  prompt += f"""User: {message}
33
- Falcon:"""
34
  return prompt
35
 
36
  seed = 42
@@ -136,8 +136,7 @@ with gr.Blocks() as demo:
136
  ##
137
  This app provides a way of using wizard coder via a demo
138
 
139
- ⚠️ **Limitations**: the model can produce factually incorrect information, hallucinating facts and actions. As it has not undergone any advanced tuning/alignment, it can produce problematic outputs, especially if prompted to do so. Finally, this demo is limited to a session length of about 1,000 words.
140
- """
141
  )
142
 
143
  chatbot.like(vote, None, None)
 
28
  prompt += f"System: {system_prompt}\n"
29
  for user_prompt, bot_response in history:
30
  prompt += f"User: {user_prompt}\n"
31
+ prompt += f"Wizard: {bot_response}\n" # Response already contains "Wizard: "
32
  prompt += f"""User: {message}
33
+ Wizard:"""
34
  return prompt
35
 
36
  seed = 42
 
136
  ##
137
  This app provides a way of using wizard coder via a demo
138
 
139
+ ⚠️ **Limitations**: the model can produce factually incorrect information, hallucinating facts and actions.
 
140
  )
141
 
142
  chatbot.like(vote, None, None)