Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -253,9 +253,9 @@ with gr.Blocks() as lliface:
|
|
253 |
MacaronicFile = gr.File(label="Paste Macaronic Text")
|
254 |
with gr.Row():
|
255 |
MergeButton = gr.Button()
|
256 |
-
MergeButton.click(merge_lines, inputs=[RomanFile, W4WFile, FullMeanFile, MacaronicFile], outputs=[MergeOutput])
|
257 |
with gr.Row():
|
258 |
MergeOutput = gr.TextArea(label="Output")
|
|
|
259 |
with gr.Tab("Dictionary from text"):
|
260 |
gr.Interface(fn=create_dictionary, inputs="text", outputs="text", title="Two Letter Dictionary")
|
261 |
|
|
|
253 |
MacaronicFile = gr.File(label="Paste Macaronic Text")
|
254 |
with gr.Row():
|
255 |
MergeButton = gr.Button()
|
|
|
256 |
with gr.Row():
|
257 |
MergeOutput = gr.TextArea(label="Output")
|
258 |
+
MergeButton.click(merge_lines, inputs=[RomanFile, W4WFile, FullMeanFile, MacaronicFile], outputs=[MergeOutput])
|
259 |
with gr.Tab("Dictionary from text"):
|
260 |
gr.Interface(fn=create_dictionary, inputs="text", outputs="text", title="Two Letter Dictionary")
|
261 |
|