FDSRashid commited on
Commit
97c1efd
·
1 Parent(s): 498e7f1

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -1
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
- examples = gr.Examples(examples = example, inputs = [name])
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()