Salmetov commited on
Commit
81e39b9
·
verified ·
1 Parent(s): 6446e33

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -4
app.py CHANGED
@@ -66,10 +66,9 @@ def respond(message, history):
66
 
67
  # Gradio Interface
68
  chat_interface = gr.ChatInterface(
69
- respond,
70
- chatbot_label="Apartment Agent",
71
- input_label="Your Question",
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__":