Spaces:
Sleeping
Sleeping
cryptocalypse
commited on
Commit
•
50eaf6b
1
Parent(s):
d971b75
memory improvements, diferent bugs solved, search improvement, parsers
Browse files- app.py +4 -3
- requirements.txt +1 -0
app.py
CHANGED
@@ -87,9 +87,10 @@ with gr.Blocks(title="Sophia, Torah Codes") as demo:
|
|
87 |
)
|
88 |
with gr.Tab("ELS"):
|
89 |
with gr.Row():
|
90 |
-
books_sel =
|
91 |
-
|
92 |
-
|
|
|
93 |
with gr.Row():
|
94 |
to_convert = gr.Textbox(label="Prompt to gematria conversion for apply ELS",scale=3)
|
95 |
langgem=gr.Dropdown(
|
|
|
87 |
)
|
88 |
with gr.Tab("ELS"):
|
89 |
with gr.Row():
|
90 |
+
books_sel = gr.Radio(booklist, label="Books", info="Torah books source"),
|
91 |
+
#gr.Dropdown(
|
92 |
+
# booklist, value=booklist, multiselect=True, filterable=True,label="Books", info="Select Books"
|
93 |
+
#)
|
94 |
with gr.Row():
|
95 |
to_convert = gr.Textbox(label="Prompt to gematria conversion for apply ELS",scale=3)
|
96 |
langgem=gr.Dropdown(
|
requirements.txt
CHANGED
@@ -1,5 +1,6 @@
|
|
1 |
huggingface_hub==0.22.2
|
2 |
prettytable
|
3 |
colorama
|
|
|
4 |
torahcodes==1.0.10
|
5 |
deep-translator
|
|
|
1 |
huggingface_hub==0.22.2
|
2 |
prettytable
|
3 |
colorama
|
4 |
+
gradio
|
5 |
torahcodes==1.0.10
|
6 |
deep-translator
|