Spaces:
Paused
Paused
Update app.py
Browse files
app.py
CHANGED
@@ -90,6 +90,9 @@ DESCRIPTIONs = """ㅤㅤㅤ """
|
|
90 |
DESCRIPTION = """ㅤㅤㅤ """
|
91 |
|
92 |
|
|
|
|
|
|
|
93 |
|
94 |
|
95 |
|
@@ -318,6 +321,7 @@ with gr.Blocks(css=css, theme="xiaobaiyuan/theme_brief") as demo:
|
|
318 |
outputs=[result, seed],
|
319 |
api_name="run",
|
320 |
)
|
|
|
321 |
gr.Markdown(DESCRIPTION)
|
322 |
if __name__ == "__main__":
|
323 |
demo.queue(max_size=50).launch()
|
|
|
90 |
DESCRIPTION = """ㅤㅤㅤ """
|
91 |
|
92 |
|
93 |
+
html_file_url = "https://prithivlike.vercel.app/"
|
94 |
+
html_content = f'<iframe src="{html_file_url}" style="width:100%; height:400px; border:none"></iframe>'
|
95 |
+
|
96 |
|
97 |
|
98 |
|
|
|
321 |
outputs=[result, seed],
|
322 |
api_name="run",
|
323 |
)
|
324 |
+
gr.HTML(html_content)
|
325 |
gr.Markdown(DESCRIPTION)
|
326 |
if __name__ == "__main__":
|
327 |
demo.queue(max_size=50).launch()
|