nos commited on
Commit
d99ba1e
1 Parent(s): 81e75b9

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +16 -13
app.py CHANGED
@@ -59,28 +59,31 @@ with gr.Blocks() as demo:
59
  )
60
  with gr.Tab("ELS"):
61
  with gr.Row():
62
- image_input = gr.Image()
63
- image_output = gr.Image()
64
- image_button = gr.Button("Flip")
65
 
66
  with gr.Tab("Gematria"):
67
  with gr.Row():
68
- image_input = gr.Image()
69
- image_output = gr.Image()
70
- image_button = gr.Button("Flip")
 
71
 
72
  with gr.Tab("Temurae"):
73
  with gr.Row():
74
- image_input = gr.Image()
75
- image_output = gr.Image()
76
- image_button = gr.Button("Flip")
 
77
 
78
  with gr.Tab("Ziruph"):
79
  with gr.Row():
80
- image_input = gr.Image()
81
- image_output = gr.Image()
82
- image_button = gr.Button("Flip")
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()