ShermanAI commited on
Commit
5d36f58
·
verified ·
1 Parent(s): 5e8528a

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -2
app.py CHANGED
@@ -51,9 +51,8 @@ description = ("Due to the unavailability of an OpenAI key, this chatbot is curr
51
  "Thank you for your understanding")
52
 
53
  def show_message():
54
- return description # Simply return the message.
55
 
56
- # Create a Gradio interface that only shows the message with no interaction.
57
  iface = gr.Interface(fn=show_message, inputs=[], outputs="text", title=title, description=description)
58
 
59
  iface.launch(debug=True)
 
51
  "Thank you for your understanding")
52
 
53
  def show_message():
54
+ return description
55
 
 
56
  iface = gr.Interface(fn=show_message, inputs=[], outputs="text", title=title, description=description)
57
 
58
  iface.launch(debug=True)