Spaces:
Runtime error
Runtime error
nos
commited on
Update app.py
Browse files
app.py
CHANGED
|
@@ -59,28 +59,31 @@ with gr.Blocks() as demo:
|
|
| 59 |
)
|
| 60 |
with gr.Tab("ELS"):
|
| 61 |
with gr.Row():
|
| 62 |
-
|
| 63 |
-
|
| 64 |
-
|
| 65 |
|
| 66 |
with gr.Tab("Gematria"):
|
| 67 |
with gr.Row():
|
| 68 |
-
|
| 69 |
-
|
| 70 |
-
|
|
|
|
| 71 |
|
| 72 |
with gr.Tab("Temurae"):
|
| 73 |
with gr.Row():
|
| 74 |
-
|
| 75 |
-
|
| 76 |
-
|
|
|
|
| 77 |
|
| 78 |
with gr.Tab("Ziruph"):
|
| 79 |
with gr.Row():
|
| 80 |
-
|
| 81 |
-
|
| 82 |
-
|
| 83 |
-
|
|
|
|
| 84 |
with gr.Tab("Files"):
|
| 85 |
with gr.Row():
|
| 86 |
image_input = gr.Image()
|
|
|
|
| 59 |
)
|
| 60 |
with gr.Tab("ELS"):
|
| 61 |
with gr.Row():
|
| 62 |
+
text1 = gr.Textbox(label="Prompt to gematria conversion for apply ELS")
|
| 63 |
+
text2 = gr.Textbox(label="ELS value")
|
| 64 |
+
inbtw = gr.Button("Search")
|
| 65 |
|
| 66 |
with gr.Tab("Gematria"):
|
| 67 |
with gr.Row():
|
| 68 |
+
text1 = gr.Textbox(label="Text to convert")
|
| 69 |
+
text2 = gr.Textbox(label="Gematria Sumatory")
|
| 70 |
+
text3 = gr.Textbox(label="Gematria Values")
|
| 71 |
+
inbtw = gr.Button("Convert")
|
| 72 |
|
| 73 |
with gr.Tab("Temurae"):
|
| 74 |
with gr.Row():
|
| 75 |
+
text1 = gr.Textbox(label="Text to convert")
|
| 76 |
+
text2 = gr.Textbox(label="Temurae Text")
|
| 77 |
+
inbtw = gr.Button("Convert")
|
| 78 |
+
|
| 79 |
|
| 80 |
with gr.Tab("Ziruph"):
|
| 81 |
with gr.Row():
|
| 82 |
+
text1 = gr.Textbox(label="Text to convert")
|
| 83 |
+
text2 = gr.Textbox(label="Ziruph Dictionary")
|
| 84 |
+
text3 = gr.Textbox(label="Cypher text")
|
| 85 |
+
inbtw = gr.Button("Convert")
|
| 86 |
+
|
| 87 |
with gr.Tab("Files"):
|
| 88 |
with gr.Row():
|
| 89 |
image_input = gr.Image()
|