Spaces:
Runtime error
Runtime error
nos
commited on
Update app.py
Browse files
app.py
CHANGED
|
@@ -80,12 +80,9 @@ with gr.Blocks() as demo:
|
|
| 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 |
results_els=gr.JSON(label="Results")
|
| 84 |
-
|
| 85 |
-
els_book,
|
| 86 |
-
inputs=[ "", text2 ],
|
| 87 |
-
outputs=results_els
|
| 88 |
-
)
|
| 89 |
with gr.Row():
|
| 90 |
start = gr.Number(label="Start", value=1)
|
| 91 |
end = gr.Number(label="End", value=1)
|
|
@@ -103,6 +100,8 @@ with gr.Blocks() as demo:
|
|
| 103 |
inputs=[start, end, step, length, tlang, spaces_include, strip_in_braces, strip_diacritics_chk],
|
| 104 |
outputs=translate_results
|
| 105 |
)
|
|
|
|
|
|
|
| 106 |
with gr.Tab("Gematria"):
|
| 107 |
with gr.Row():
|
| 108 |
gr.Markdown("## Calculate Gematria Sum")
|
|
|
|
| 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 |
+
with fr.Row():
|
| 84 |
results_els=gr.JSON(label="Results")
|
| 85 |
+
|
|
|
|
|
|
|
|
|
|
|
|
|
| 86 |
with gr.Row():
|
| 87 |
start = gr.Number(label="Start", value=1)
|
| 88 |
end = gr.Number(label="End", value=1)
|
|
|
|
| 100 |
inputs=[start, end, step, length, tlang, spaces_include, strip_in_braces, strip_diacritics_chk],
|
| 101 |
outputs=translate_results
|
| 102 |
)
|
| 103 |
+
|
| 104 |
+
|
| 105 |
with gr.Tab("Gematria"):
|
| 106 |
with gr.Row():
|
| 107 |
gr.Markdown("## Calculate Gematria Sum")
|