delphiclinic commited on
Commit
ccafaa2
β€’
1 Parent(s): 9921b5f

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -147,9 +147,9 @@ def streaming_chat(history):
147
 
148
 
149
  # Creates A gradio Interface
150
- with gr.Blocks(title="Clinical Decision Support System", head="intro.html") as demo:
151
  Langchain = gr.Chatbot(label="Response", height=500)
152
- Question = gr.Textbox(label="Question")
153
  Question.submit(add_text, [Langchain, Question], [Langchain, Question]).then(
154
  streaming_chat, Langchain, Langchain
155
  )
 
147
 
148
 
149
  # Creates A gradio Interface
150
+ with gr.Blocks(title="Clinical Decision Support System") as demo:
151
  Langchain = gr.Chatbot(label="Response", height=500)
152
+ Question = gr.Textbox(label="Question",placeholder='What are the symptoms of endocarditis?')
153
  Question.submit(add_text, [Langchain, Question], [Langchain, Question]).then(
154
  streaming_chat, Langchain, Langchain
155
  )