Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -25,7 +25,8 @@ with gr.Blocks() as demo:
|
|
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 |
-
|
30 |
|
31 |
demo.launch()
|
|
|
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 |
+
examples = gr.Examples(examples = example, inputs = [name])
|
29 |
greet_btn.click(fn=getArabic, inputs=name, outputs=output)
|
30 |
+
|
31 |
|
32 |
demo.launch()
|