Jyotheeshg commited on
Commit
b15ff1a
·
verified ·
1 Parent(s): 019e4fb

Create app.py

Browse files
Files changed (1) hide show
  1. app.py +10 -0
app.py ADDED
@@ -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()