File size: 511 Bytes
04565a5 602edaf 04565a5 602edaf 04565a5 602edaf |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 |
import gradio as gr
import os # os ๋ชจ๋์ ์ํฌํธํฉ๋๋ค.
# ํ๊ฒฝ ๋ณ์๋ฅผ ํตํด iframe ์์ค URL์ ๊ฐ์ ธ์ต๋๋ค.
iframe_src = os.getenv('iframe_src')
html_code = f"""
<iframe src="{iframe_src}" width="100%" height="600" frameborder="0"></iframe>
"""
def show_iframe():
return html_code
# Gradio ์ธํฐํ์ด์ค๋ฅผ ์์ฑํฉ๋๋ค.
iface = gr.Interface(fn=show_iframe, inputs=[], outputs=gr.HTML(), title="AIQ ๋ธ๋ก๊ทธ ์ ๋ฌธ๊ฐ")
# ์ธํฐํ์ด์ค๋ฅผ ์คํํฉ๋๋ค.
iface.launch() |