Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -24,7 +24,7 @@ with gr.Blocks() as demo:
|
|
24 |
with gr.Column():
|
25 |
name = gr.Textbox(label="English Transliteration (Using Buckwater System )")
|
26 |
output = gr.Textbox(label="Arabic Form of Text")
|
27 |
-
|
28 |
greet_btn.click(fn=getArabic, inputs=name, outputs=output)
|
29 |
examples = gr.Examples(examples = example, inputs = [name])
|
30 |
|
|
|
24 |
with gr.Column():
|
25 |
name = gr.Textbox(label="English Transliteration (Using Buckwater System )")
|
26 |
output = gr.Textbox(label="Arabic Form of Text")
|
27 |
+
greet_btn = gr.Button("Get Arabic")
|
28 |
greet_btn.click(fn=getArabic, inputs=name, outputs=output)
|
29 |
examples = gr.Examples(examples = example, inputs = [name])
|
30 |
|