heymenn commited on
Commit
a24f06e
·
verified ·
1 Parent(s): 6b0801d

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -2
app.py CHANGED
@@ -89,7 +89,7 @@ def text_to_neo4j(rm, cm):
89
 
90
  text_file.close()
91
 
92
- return "Output.txt"
93
 
94
 
95
 
@@ -107,11 +107,13 @@ with gr.Blocks() as demo:
107
 
108
  btn_submit = gr.Button("Submit")
109
 
 
 
110
  result_fi = gr.File(file_count='single')
111
 
112
  ex_fi.upload(excel_to_csv, inputs=ex_fi, outputs=[columns, csv_fi])
113
 
114
- btn_submit.click(text_to_neo4j, inputs=[remarks, columns], outputs=result_fi)
115
 
116
 
117
  demo.launch()
 
89
 
90
  text_file.close()
91
 
92
+ return "Output.txt",response
93
 
94
 
95
 
 
107
 
108
  btn_submit = gr.Button("Submit")
109
 
110
+ result_ta = gr.TextArea("Here you will find your answer !")
111
+
112
  result_fi = gr.File(file_count='single')
113
 
114
  ex_fi.upload(excel_to_csv, inputs=ex_fi, outputs=[columns, csv_fi])
115
 
116
+ btn_submit.click(text_to_neo4j, inputs=[remarks, columns], outputs=[result_fi,result_ta])
117
 
118
 
119
  demo.launch()