Spaces:
Runtime error
Runtime error
Make barebones for now, just get it going
Browse files
app.py
CHANGED
@@ -28,6 +28,12 @@ def run_aim():
|
|
28 |
html = f"""
|
29 |
<iframe
|
30 |
src="http://{HOST}:{PORT}"
|
|
|
|
|
|
|
|
|
|
|
|
|
31 |
style="
|
32 |
position: fixed;
|
33 |
top: 0px;
|
@@ -40,8 +46,6 @@ html = f"""
|
|
40 |
overflow: hidden;
|
41 |
z-index: 999999;
|
42 |
height: 100%;
|
43 |
-
">
|
44 |
-
</iframe>
|
45 |
"""
|
46 |
|
47 |
def run():
|
@@ -57,7 +61,7 @@ def main():
|
|
57 |
outputs=gr.HTML(html),
|
58 |
)
|
59 |
|
60 |
-
demo.launch()
|
61 |
|
62 |
if __name__ == "__main__":
|
63 |
main()
|
|
|
28 |
html = f"""
|
29 |
<iframe
|
30 |
src="http://{HOST}:{PORT}"
|
31 |
+
">
|
32 |
+
</iframe>
|
33 |
+
"""
|
34 |
+
|
35 |
+
"""
|
36 |
+
|
37 |
style="
|
38 |
position: fixed;
|
39 |
top: 0px;
|
|
|
46 |
overflow: hidden;
|
47 |
z-index: 999999;
|
48 |
height: 100%;
|
|
|
|
|
49 |
"""
|
50 |
|
51 |
def run():
|
|
|
61 |
outputs=gr.HTML(html),
|
62 |
)
|
63 |
|
64 |
+
demo.launch(share=True)
|
65 |
|
66 |
if __name__ == "__main__":
|
67 |
main()
|