File size: 240 Bytes
3f3ca03
 
 
 
4cc3a06
3f3ca03
27c2db3
3f3ca03
4cc3a06
 
1
2
3
4
5
6
7
8
9
10
import gradio as gr

demo = gr.Blocks()
with demo:
    txt_file = gr.File(type="txt",label='CONTRACT')
    text = gr.Textbox()
    gr.Dropdown(choices=['1','2','3'],label='SEARCH QUERY')
    b1 = gr.Button("Analyze File")
    
demo.launch()