Spaces:
Paused
Paused
Update app.py
Browse files
app.py
CHANGED
|
@@ -33,7 +33,6 @@ def chatbot(message, history):
|
|
| 33 |
custom_prompt = PERSONALITY + "\n\nUser: " + message + "\nChatbot:"
|
| 34 |
response = generate_response(custom_prompt, history) # Hypothetical function
|
| 35 |
history.append((message, response))
|
| 36 |
-
return history
|
| 37 |
|
| 38 |
"""
|
| 39 |
For information on how to customize the ChatInterface, peruse the gradio docs: https://www.gradio.app/docs/chatinterface
|
|
|
|
| 33 |
custom_prompt = PERSONALITY + "\n\nUser: " + message + "\nChatbot:"
|
| 34 |
response = generate_response(custom_prompt, history) # Hypothetical function
|
| 35 |
history.append((message, response))
|
|
|
|
| 36 |
|
| 37 |
"""
|
| 38 |
For information on how to customize the ChatInterface, peruse the gradio docs: https://www.gradio.app/docs/chatinterface
|