Spaces:
Sleeping
Sleeping
nos
commited on
Commit
•
cdad5d3
1
Parent(s):
e92954d
Update app.py
Browse files
app.py
CHANGED
@@ -86,10 +86,16 @@ with gr.Blocks() as demo:
|
|
86 |
)
|
87 |
with gr.Tab("Gematria"):
|
88 |
with gr.Row():
|
89 |
-
|
90 |
-
|
91 |
-
|
92 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
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():
|