vidyasharma17 commited on
Commit
216462a
1 Parent(s): fd30eb9

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -3
app.py CHANGED
@@ -41,9 +41,9 @@ def chatbot_response(user_input):
41
 
42
  # Define UI description with a table of sample questions
43
  description = """
44
- ### FinTech Chatbot
45
 
46
- This chatbot can assist you with a variety of fintech-related queries. Below are some sample questions you can ask:
47
 
48
  <table>
49
  <tr>
@@ -90,7 +90,7 @@ interface = gr.Interface(
90
  fn=chatbot_response,
91
  inputs=gr.Textbox(lines=2, placeholder="Ask your fintech question here..."),
92
  outputs="text",
93
- title="FinTech Chatbot",
94
  description=description
95
  )
96
 
 
41
 
42
  # Define UI description with a table of sample questions
43
  description = """
44
+ ### Banking Chatbot
45
 
46
+ This chatbot can assist you with a variety of banking-related queries. Below are some sample questions you can ask:
47
 
48
  <table>
49
  <tr>
 
90
  fn=chatbot_response,
91
  inputs=gr.Textbox(lines=2, placeholder="Ask your fintech question here..."),
92
  outputs="text",
93
+ title="Banking Chatbot",
94
  description=description
95
  )
96