arxivgpt kim commited on
Update app.py
Browse files
app.py
CHANGED
|
@@ -79,8 +79,18 @@ with gr.Blocks(css=css) as demo:
|
|
| 79 |
gr.Markdown("### AI ์๋ ํ๋ก๊ทธ๋๋ฐ ์๋น์ค: ๋ด๊ฐ ๋ง๋ค๊ณ ์ถ์ AI ์๋น์ค๋ฅผ AI์๊ฒ ์
๋ ฅ๋ง ํ๋ฉด ์๋์ผ๋ก ์ฝ๋๋ฅผ ์์ฑํ๊ณ ์คํ ๋ฐฉ๋ฒ์ ์๋ดํฉ๋๋ค.", elem_id="markdown-description")
|
| 80 |
|
| 81 |
with gr.Row():
|
| 82 |
-
|
| 83 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 84 |
with gr.Row():
|
| 85 |
submit_button = gr.Button("์ ์ก")
|
| 86 |
output_html = gr.HTML(label="AI ์๋ต")
|
|
|
|
| 79 |
gr.Markdown("### AI ์๋ ํ๋ก๊ทธ๋๋ฐ ์๋น์ค: ๋ด๊ฐ ๋ง๋ค๊ณ ์ถ์ AI ์๋น์ค๋ฅผ AI์๊ฒ ์
๋ ฅ๋ง ํ๋ฉด ์๋์ผ๋ก ์ฝ๋๋ฅผ ์์ฑํ๊ณ ์คํ ๋ฐฉ๋ฒ์ ์๋ดํฉ๋๋ค.", elem_id="markdown-description")
|
| 80 |
|
| 81 |
with gr.Row():
|
| 82 |
+
|
| 83 |
+
text_input = gr.Textbox(
|
| 84 |
+
label="๋ฉ์์ง๋ฅผ ์
๋ ฅํ์ธ์.",
|
| 85 |
+
placeholder="์ฌ๊ธฐ์ ์
๋ ฅํ์ธ์...",
|
| 86 |
+
examples=[
|
| 87 |
+
"ํ
์คํธ๋ฅผ ์
๋ ฅํ๋ฉด ์์ฑ์์ฑ(\"gtts\") ์๋น์ค ์์ฑ",
|
| 88 |
+
"MBTI 20๋ฌธํญ์ผ๋ก ๊ฐ๊ด์ ์ ํ์ผ๋ก ๊ฒ์ฌํ๋ ์๋น์ค ์์ฑ",
|
| 89 |
+
"์คํ๊ต 1ํ๋
์์ด ์ํ๋ฌธ์ 10๊ฐ๋ฅผ ์ถ์ ํ๊ณ ๊ฐ๊ด์ ์ ํ๊ณผ ์ฑ์ ํ๋ ์๋น์ค ์์ฑ"
|
| 90 |
+
]
|
| 91 |
+
)
|
| 92 |
+
|
| 93 |
+
|
| 94 |
with gr.Row():
|
| 95 |
submit_button = gr.Button("์ ์ก")
|
| 96 |
output_html = gr.HTML(label="AI ์๋ต")
|