Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -26,8 +26,8 @@ def translate_code_english_to_korean(code):
|
|
26 |
|
27 |
iface = gr.Interface(
|
28 |
fn=translate_code_english_to_korean,
|
29 |
-
inputs=gr.
|
30 |
-
outputs=gr.
|
31 |
title="영어 코드 → 한국어 번역기",
|
32 |
description="GPT-4o-mini 모델을 사용하여 영어로 작성된 코드를 한국어로 번역해줍니다."
|
33 |
)
|
|
|
26 |
|
27 |
iface = gr.Interface(
|
28 |
fn=translate_code_english_to_korean,
|
29 |
+
inputs=gr.Textbox(lines=10, label="영어 코드 입력"),
|
30 |
+
outputs=gr.Textbox(label="한국어 번역된 코드"),
|
31 |
title="영어 코드 → 한국어 번역기",
|
32 |
description="GPT-4o-mini 모델을 사용하여 영어로 작성된 코드를 한국어로 번역해줍니다."
|
33 |
)
|