nos commited on
Commit
cdad5d3
1 Parent(s): e92954d

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +10 -4
app.py CHANGED
@@ -86,10 +86,16 @@ with gr.Blocks() as demo:
86
  )
87
  with gr.Tab("Gematria"):
88
  with gr.Row():
89
- text1 = gr.Textbox(label="Text to convert")
90
- text2 = gr.Textbox(label="Gematria Sumatory")
91
- text3 = gr.Textbox(label="Gematria Values")
92
- inbtw = gr.Button("Convert")
 
 
 
 
 
 
93
 
94
  with gr.Tab("Temurae"):
95
  with gr.Row():
 
86
  )
87
  with gr.Tab("Gematria"):
88
  with gr.Row():
89
+ gr.Markdown("## Calculate Gematria Sum")
90
+ with gr.Row():
91
+ gematria_text = gr.Textbox(label="Enter Text")
92
+ gematria_btn = gr.Button("Calculate Sum")
93
+ gematria_result = gr.Number(label="Gematria Sum")
94
+ gematria_btn.click(
95
+ gematria_sum,
96
+ inputs=gematria_text,
97
+ outputs=gematria_result
98
+ )
99
 
100
  with gr.Tab("Temurae"):
101
  with gr.Row():