Hyeonseo commited on
Commit
5f3cbcc
1 Parent(s): b8d88fa

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +5 -0
app.py CHANGED
@@ -1,6 +1,11 @@
1
  import gradio as gr
2
 
 
 
 
 
3
  inputs = [
 
4
  gr.inputs.File(label="Upload MDX File")
5
  ]
6
 
 
1
  import gradio as gr
2
 
3
+
4
+ def translate(text):
5
+ return "translate_function"
6
+
7
  inputs = [
8
+ gr.inputs.Textbox(lines=10, label="Input Open API Key"),
9
  gr.inputs.File(label="Upload MDX File")
10
  ]
11