Hugging Face
Models
Datasets
Spaces
Buckets
new
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
ARCChatBot
/
V3MILO
like
0
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
Jyotheeshg
commited on
May 27, 2025
Commit
b15ff1a
·
verified
·
1 Parent(s):
019e4fb
Create app.py
Browse files
Files changed (1)
hide
show
app.py
+10
-0
app.py
ADDED
Viewed
@@ -0,0 +1,10 @@
1
+
import gradio as gr
2
+
import os
3
+
4
+
demo = gr.load(
5
+
"Jyotheeshg/MajorMILO_V11", # Replace with your actual username/Space name
6
+
src="spaces",
7
+
hf_token=os.getenv("HF_TOKEN")
8
+
)
9
+
10
+
demo.launch()