File size: 308 Bytes
11b6e82
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11


function make_script(src) {
    const script = document.createElement('script');
    script.type = 'module';
    script.setAttribute("crossorigin", "");
    script.src = src;
    document.head.appendChild(script);
}
make_script("https://gradio.s3-us-west-2.amazonaws.com/3.23.0/assets/index.7a68216a.js");