File size: 237 Bytes
cfd0921
062370f
05d9a63
030a85d
f821c4d
aac0c8c
 
 
062370f
 
 
1
2
3
4
5
6
7
8
9
10
11
import os
import gradio as gr
os.system('pip install git+https://github.com/broadfield-dev/Do_it_All')
from doitall import demo

def run_demo():
    demo.main()
    
with gr.Blocks() as app:
    app.load(demo.main,None,None)
app.launch()