corumbus commited on
Commit
00b6528
·
1 Parent(s): e6e8660
Files changed (1) hide show
  1. app.py +7 -0
app.py ADDED
@@ -0,0 +1,7 @@
 
 
 
 
 
 
 
 
1
+ import gradio as gr
2
+
3
+ # Load the app from a private Space
4
+ interface = gr.Interface.load("spaces/your-username/private-rag-app")
5
+
6
+ # Launch the interface
7
+ interface.launch()