vidyasharma17 commited on
Commit
37c29ce
·
verified ·
1 Parent(s): 279024a

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +7 -2
app.py CHANGED
@@ -90,10 +90,15 @@ 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
 
 
97
  if __name__ == "__main__":
98
  # Launch the Gradio app
99
  interface.launch()
 
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=(
95
+ "A chatbot to handle fintech-related queries using a Naive Bayes model. "
96
+ "\n\n**License**: This software is licensed under a Proprietary License. "
97
+ "Copyright (c) 2024 Vidya Sharma. Redistribution or commercial use is prohibited."
98
+ ),
99
  )
100
 
101
+
102
  if __name__ == "__main__":
103
  # Launch the Gradio app
104
  interface.launch()