vsrinivas commited on
Commit
09f21bc
·
verified ·
1 Parent(s): 00ff2b2

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +6 -0
app.py CHANGED
@@ -75,6 +75,12 @@ def respond(message, chat_history, instruction, temperature=0.7):
75
  acc_text = ""
76
 
77
  with gr.Blocks() as demo:
 
 
 
 
 
 
78
  chatbot = gr.Chatbot(height=1000) #just to fit the notebook
79
  msg = gr.Textbox(label="Prompt")
80
  with gr.Accordion(label="Advanced options",open=False):
 
75
  acc_text = ""
76
 
77
  with gr.Blocks() as demo:
78
+ gr.Markdown(
79
+ """
80
+ # General purpose chatbot - test & demo app by Srinivas.V..
81
+ ## As this is hosted platform, you will find it slow and may not provide correct answers after a few dialogues. Type your query, click/ submit and wait for the resonse before typing in your ext query.
82
+ """)
83
+
84
  chatbot = gr.Chatbot(height=1000) #just to fit the notebook
85
  msg = gr.Textbox(label="Prompt")
86
  with gr.Accordion(label="Advanced options",open=False):