Update app.py
Browse files
app.py
CHANGED
@@ -15,7 +15,7 @@ def translate_to_english_keywords(text):
|
|
15 |
# Gradio 인터페이스 정의
|
16 |
interface = gr.Interface(
|
17 |
fn=translate_to_english_keywords,
|
18 |
-
inputs=gr.
|
19 |
outputs="text",
|
20 |
title="한글 문장을 영어 키워드로 번역",
|
21 |
description="한글 문장을 입력하면, 그 의미가 포함된 간략하고 함축적인 영어로 출력합니다."
|
|
|
15 |
# Gradio 인터페이스 정의
|
16 |
interface = gr.Interface(
|
17 |
fn=translate_to_english_keywords,
|
18 |
+
inputs=gr.Textbox(lines=2, placeholder="한글 문장을 입력하세요..."),
|
19 |
outputs="text",
|
20 |
title="한글 문장을 영어 키워드로 번역",
|
21 |
description="한글 문장을 입력하면, 그 의미가 포함된 간략하고 함축적인 영어로 출력합니다."
|