Spaces:
Runtime error
Runtime error
Update app.py
Browse files
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"
|
32 |
prompt += f"""User: {message}
|
33 |
-
|
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.
|
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)
|