Spaces:
Build error
Build error
initial files
Browse files
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)
|