Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
chohj06ms
/
params
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
main
params
/
main.py
tripleS-Dev
upload requirements.txt
786bd75
over 1 year ago
raw
Copy download link
history
blame
contribute
delete
Safe
209 Bytes
import
gradio
as
gr
def
param
(
request: gr.Request
):
param = request.query_params
return
str
(param)
with
gr.Blocks()
as
demo:
txt = gr.Textbox()
demo.load(fn=param, outputs=txt)
demo.launch()