Shredder commited on
Commit
4cc3a06
1 Parent(s): afc91c4

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -2
app.py CHANGED
@@ -2,7 +2,9 @@ import gradio as gr
2
 
3
  demo = gr.Blocks()
4
  with demo:
5
- txt_file = gr.File(type="txt",label='CONTRACT')
6
  text = gr.Textbox()
7
- d1=gr.Dropdown(choices=questions,label='SEARCH QUERY')
8
  b1 = gr.Button("Analyze File")
 
 
 
2
 
3
  demo = gr.Blocks()
4
  with demo:
5
+ txt_file = gr.File(type="txt",label='CONTRACT')
6
  text = gr.Textbox()
7
+ gr.Dropdown(choices=questions,label='SEARCH QUERY')
8
  b1 = gr.Button("Analyze File")
9
+
10
+ demo.launch()