Spaces:
Sleeping
Sleeping
nos
commited on
Commit
•
fafff5a
1
Parent(s):
8c1408d
Update app.py
Browse files
app.py
CHANGED
@@ -88,17 +88,17 @@ with gr.Blocks() as demo:
|
|
88 |
with gr.Tab("Gematria"):
|
89 |
with gr.Row():
|
90 |
gr.Markdown("## Calculate Gematria Sum")
|
91 |
-
|
92 |
-
|
93 |
-
|
94 |
-
|
95 |
gematria_result = gr.Number(label="Gematria Sum")
|
96 |
gematria_btn.click(
|
97 |
gematria_sum,
|
98 |
inputs=gematria_text,
|
99 |
outputs=gematria_result
|
100 |
)
|
101 |
-
|
102 |
with gr.Tab("Temurae"):
|
103 |
with gr.Row():
|
104 |
text1 = gr.Textbox(label="Text to convert")
|
|
|
88 |
with gr.Tab("Gematria"):
|
89 |
with gr.Row():
|
90 |
gr.Markdown("## Calculate Gematria Sum")
|
91 |
+
with gr.Row():
|
92 |
+
gematria_text = gr.Textbox(label="Enter Text")
|
93 |
+
gematria_btn = gr.Button("Calculate Sum")
|
94 |
+
with gr.Row():
|
95 |
gematria_result = gr.Number(label="Gematria Sum")
|
96 |
gematria_btn.click(
|
97 |
gematria_sum,
|
98 |
inputs=gematria_text,
|
99 |
outputs=gematria_result
|
100 |
)
|
101 |
+
|
102 |
with gr.Tab("Temurae"):
|
103 |
with gr.Row():
|
104 |
text1 = gr.Textbox(label="Text to convert")
|