Karthikeyan commited on
Commit
d798e26
1 Parent(s): 8139e09

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +9 -8
app.py CHANGED
@@ -226,6 +226,14 @@ class LangChain_Document_QA:
226
  with gr.Row():
227
  with gr.Column(scale=0.70):
228
  chatbot = gr.Chatbot([], elem_id="chatbot").style(height=360)
 
 
 
 
 
 
 
 
229
  with gr.Column(scale=0.30):
230
  with gr.Row():
231
  txt3 =gr.Textbox(
@@ -233,14 +241,7 @@ class LangChain_Document_QA:
233
  placeholder="AI Healthcare Suggesstion").style(container=False)
234
  with gr.Row():
235
  button=gr.Button(value="🚀send")
236
- with gr.Row():
237
- with gr.Column(scale=0.8):
238
- txt = gr.Textbox(
239
- show_label=False,
240
- placeholder="Patient").style(container=False)
241
-
242
- with gr.Column(scale=0.2):
243
- emptyBtn = gr.Button("🧹 Clear")
244
  # with gr.Row():
245
  # with gr.Column(scale=0.80):
246
 
 
226
  with gr.Row():
227
  with gr.Column(scale=0.70):
228
  chatbot = gr.Chatbot([], elem_id="chatbot").style(height=360)
229
+ with gr.Row():
230
+ with gr.Column(scale=0.8):
231
+ txt = gr.Textbox(
232
+ show_label=False,
233
+ placeholder="Patient").style(container=False)
234
+
235
+ with gr.Column(scale=0.2):
236
+ emptyBtn = gr.Button("🧹 Clear")
237
  with gr.Column(scale=0.30):
238
  with gr.Row():
239
  txt3 =gr.Textbox(
 
241
  placeholder="AI Healthcare Suggesstion").style(container=False)
242
  with gr.Row():
243
  button=gr.Button(value="🚀send")
244
+
 
 
 
 
 
 
 
245
  # with gr.Row():
246
  # with gr.Column(scale=0.80):
247