Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Shredder
/
Sample
like
0
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
4cc3a06
Sample
/
app.py
Shredder
Update app.py
4cc3a06
over 2 years ago
raw
Copy download link
history
blame
236 Bytes
import
gradio
as
gr
demo = gr.Blocks()
with
demo:
txt_file = gr.File(
type
=
"txt"
,label=
'CONTRACT'
)
text = gr.Textbox()
gr.Dropdown(choices=questions,label=
'SEARCH QUERY'
)
b1 = gr.Button(
"Analyze File"
)
demo.launch()