Spaces:
Sleeping
Sleeping
nos
commited on
Commit
•
9509ff0
1
Parent(s):
0dd2e27
Update app.py
Browse files
app.py
CHANGED
@@ -80,10 +80,11 @@ with gr.Blocks() as demo:
|
|
80 |
to_convert = gr.Textbox(label="Prompt to gematria conversion for apply ELS",scale=3)
|
81 |
to_jump = gr.Textbox(label="ELS value", scale=3)
|
82 |
search_els = gr.Button("Search",scale=1)
|
|
|
83 |
search_els.click(
|
84 |
-
|
85 |
inputs=[to_convert,to_jump],
|
86 |
-
outputs=
|
87 |
)
|
88 |
with gr.Row():
|
89 |
start = gr.Number(label="Start", value=1)
|
|
|
80 |
to_convert = gr.Textbox(label="Prompt to gematria conversion for apply ELS",scale=3)
|
81 |
to_jump = gr.Textbox(label="ELS value", scale=3)
|
82 |
search_els = gr.Button("Search",scale=1)
|
83 |
+
els_results = gr.JSON(label="Results")
|
84 |
search_els.click(
|
85 |
+
els_book,
|
86 |
inputs=[to_convert,to_jump],
|
87 |
+
outputs=els_results
|
88 |
)
|
89 |
with gr.Row():
|
90 |
start = gr.Number(label="Start", value=1)
|