chrisjay commited on
Commit
a9d0152
·
1 Parent(s): 1ce34be

initial files

Browse files
Files changed (1) hide show
  1. app.py +2 -1
app.py CHANGED
@@ -26,7 +26,7 @@ block = gr.Blocks()
26
  with block:
27
  gr.Markdown(markdown)
28
 
29
- with gr.Tab(''):
30
  with gr.Row():
31
  language = gr.inputs.Textbox(placeholder='Choose your language',label='Language')
32
  text = gr.inputs.Textbox(placeholder='Write your text',label='Text')
@@ -36,3 +36,4 @@ with block:
36
  save = gr.Button("Save")
37
  save.click(get_record, inputs=[language,text,record],outputs=output)
38
 
 
 
26
  with block:
27
  gr.Markdown(markdown)
28
 
29
+ with gr.Tab('version1'):
30
  with gr.Row():
31
  language = gr.inputs.Textbox(placeholder='Choose your language',label='Language')
32
  text = gr.inputs.Textbox(placeholder='Write your text',label='Text')
 
36
  save = gr.Button("Save")
37
  save.click(get_record, inputs=[language,text,record],outputs=output)
38
 
39
+ block.launch(enable_queue=True)