Hugging Face
Models
Datasets
Spaces
Buckets
new
Docs
Enterprise
Pricing
Website
Tasks
HuggingChat
Collections
Languages
Organizations
Community
Blog
Posts
Daily Papers
Learn
Discord
Forum
GitHub
Solutions
Team & Enterprise
Hugging Face PRO
Enterprise Support
Inference Providers
Inference Endpoints
Storage Buckets
Log In
Sign Up
Spaces:
terastudio
/
Test
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
NeoPy
commited on
Dec 13, 2025
Commit
212d5f1
·
verified
·
1 Parent(s):
59ac08b
Create app.py
Browse files
Files changed (1)
hide
show
app.py
+11
-0
app.py
ADDED
Viewed
@@ -0,0 +1,11 @@
1
+
import gradio as gr
2
+
3
+
with gr.Blocks() as demo:
4
+
with gr.Row():
5
+
model_pth = gr.Dropdown()
6
+
with gr.Row():
7
+
refresh = gr.Button("refresh")
8
+
model_index = gr.Dropdown()
9
+
10
+
11
+
demo.launch()