Beltran Fiz commited on
Commit
529bf77
·
1 Parent(s): 865374c

initial app test

Browse files
Files changed (1) hide show
  1. app.py +7 -0
app.py ADDED
@@ -0,0 +1,7 @@
 
 
 
 
 
 
 
 
1
+ import os
2
+ import gradio as gr
3
+
4
+ read_key = os.environ.get('HF_TOKEN', None)
5
+ with gr.Blocks() as demo:
6
+ gr.load("<bbfizp/LBRCS", hf_token=read_key, src="spaces")
7
+ demo.launch(share=True)