nos commited on
Commit
ade2cc5
1 Parent(s): 9c4141b

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +5 -5
app.py CHANGED
@@ -77,12 +77,12 @@ with gr.Blocks() as demo:
77
  )
78
  with gr.Tab("ELS"):
79
  with gr.Row():
80
- text1 = gr.Textbox(label="Prompt to gematria conversion for apply ELS",scale=3)
81
- text2 = gr.Textbox(label="ELS value", scale=3)
82
- inbtw = gr.Button("Search",scale=1)
83
- inbtw.click(
84
  translate_texts,
85
- inputs=["",text2],
86
  outputs=els_book
87
  )
88
  with gr.Row():
 
77
  )
78
  with gr.Tab("ELS"):
79
  with gr.Row():
80
+ to_convert = gr.Textbox(label="Prompt to gematria conversion for apply ELS",scale=3)
81
+ to_jump = gr.Textbox(label="ELS value", scale=3)
82
+ search_els = gr.Button("Search",scale=1)
83
+ search_els.click(
84
  translate_texts,
85
+ inputs=[to_convert,to_jump],
86
  outputs=els_book
87
  )
88
  with gr.Row():