Spaces:
Sleeping
Sleeping
Test HTML
Browse files
app.py
CHANGED
@@ -114,7 +114,13 @@ destination_image = gr.Image(label="Destination")
|
|
114 |
#Outputs
|
115 |
result_image = gr.Image(label="Blend Result")
|
116 |
txt_credits = gr.Textbox(label="Credits Available", value="205", interactive=False)
|
117 |
-
html_credits = gr.HTML("<div>Credits = 205</div>")
|
|
|
|
|
|
|
|
|
|
|
|
|
118 |
lbl_console = gr.Label(label="AI Terminal Messages", value="AI Engine ready...", container=True)
|
119 |
btn_buy = gr.Button("Buy More", visible=True, size='lg')
|
120 |
#btn_buy.click(fn=click_buy, outputs=mrk_title)
|
@@ -131,12 +137,13 @@ valor = ""
|
|
131 |
|
132 |
with gr.Blocks(theme=gr.themes.Base(), css="footer {visibility: hidden}") as main:
|
133 |
|
134 |
-
with gr.Row():
|
135 |
-
|
136 |
-
|
137 |
-
|
138 |
-
|
139 |
-
|
|
|
140 |
|
141 |
with gr.Row():
|
142 |
|
@@ -144,7 +151,7 @@ with gr.Blocks(theme=gr.themes.Base(), css="footer {visibility: hidden}") as mai
|
|
144 |
fn=perform,
|
145 |
title="",
|
146 |
inputs=[source_image, destination_image],
|
147 |
-
outputs=[result_image, lbl_console,
|
148 |
allow_flagging='auto'
|
149 |
)
|
150 |
|
|
|
114 |
#Outputs
|
115 |
result_image = gr.Image(label="Blend Result")
|
116 |
txt_credits = gr.Textbox(label="Credits Available", value="205", interactive=False)
|
117 |
+
#html_credits = gr.HTML("<div><b>Credits Available</b> = 205</div>")
|
118 |
+
|
119 |
+
html_credits = gr.HTML("""
|
120 |
+
<div><b>Credits Available</b> = 205</div>
|
121 |
+
""")
|
122 |
+
|
123 |
+
|
124 |
lbl_console = gr.Label(label="AI Terminal Messages", value="AI Engine ready...", container=True)
|
125 |
btn_buy = gr.Button("Buy More", visible=True, size='lg')
|
126 |
#btn_buy.click(fn=click_buy, outputs=mrk_title)
|
|
|
137 |
|
138 |
with gr.Blocks(theme=gr.themes.Base(), css="footer {visibility: hidden}") as main:
|
139 |
|
140 |
+
# with gr.Row():
|
141 |
+
# gr.Markdown(visible=True)
|
142 |
+
# gr.Markdown(visible=True)
|
143 |
+
# gr.Markdown(visible=True)
|
144 |
+
# #lbl_credits = gr.Label(label="Credits Available", value=valor, scale=1)
|
145 |
+
# html_credits = gr.HTML("<div>Credits = 205</div>")
|
146 |
+
# #result_image.change(fn=display_tokens, outputs=lbl_credits)
|
147 |
|
148 |
with gr.Row():
|
149 |
|
|
|
151 |
fn=perform,
|
152 |
title="",
|
153 |
inputs=[source_image, destination_image],
|
154 |
+
outputs=[result_image, lbl_console, html_credits, btn_buy],
|
155 |
allow_flagging='auto'
|
156 |
)
|
157 |
|