Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
|
@@ -66,10 +66,9 @@ def respond(message, history):
|
|
| 66 |
|
| 67 |
# Gradio Interface
|
| 68 |
chat_interface = gr.ChatInterface(
|
| 69 |
-
respond,
|
| 70 |
-
|
| 71 |
-
|
| 72 |
-
output_label="Response",
|
| 73 |
)
|
| 74 |
|
| 75 |
if __name__ == "__main__":
|
|
|
|
| 66 |
|
| 67 |
# Gradio Interface
|
| 68 |
chat_interface = gr.ChatInterface(
|
| 69 |
+
fn=respond,
|
| 70 |
+
title="Apartment Agent",
|
| 71 |
+
description="This chatbot can provide apartment-related information and answer your questions."
|
|
|
|
| 72 |
)
|
| 73 |
|
| 74 |
if __name__ == "__main__":
|