aliceblue11 commited on
Commit
191ad4b
·
verified ·
1 Parent(s): 5853da5

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
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.inputs.Textbox(lines=10, label="영어 코드 입력"),
30
- outputs=gr.outputs.Textbox(label="한국어 번역된 코드"),
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
  )