Spaces:
Sleeping
Sleeping
Markdown
Browse files
app.py
CHANGED
@@ -114,7 +114,7 @@ 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="206", interactive=False)
|
117 |
-
|
118 |
<div style="text-align: right;"><b>Credits Available</b> = 206</div>
|
119 |
""")
|
120 |
|
@@ -124,9 +124,14 @@ html_circle = gr.HTML("""
|
|
124 |
</svg>
|
125 |
""")
|
126 |
|
|
|
|
|
|
|
|
|
|
|
127 |
|
128 |
lbl_console = gr.Label(label="AI Terminal Messages", value="AI Engine ready...", container=True)
|
129 |
-
btn_buy = gr.Button("Buy More", visible=
|
130 |
#btn_buy.click(fn=click_buy, outputs=mrk_title)
|
131 |
|
132 |
#Gradio themes:
|
|
|
114 |
#Outputs
|
115 |
result_image = gr.Image(label="Blend Result")
|
116 |
txt_credits = gr.Textbox(label="Credits Available", value="206", interactive=False)
|
117 |
+
html_credits1 = gr.HTML("""
|
118 |
<div style="text-align: right;"><b>Credits Available</b> = 206</div>
|
119 |
""")
|
120 |
|
|
|
124 |
</svg>
|
125 |
""")
|
126 |
|
127 |
+
html_credits = gr.Markdown("""
|
128 |
+
Start **typing** below to see the output.
|
129 |
+

|
130 |
+
""")
|
131 |
+
|
132 |
|
133 |
lbl_console = gr.Label(label="AI Terminal Messages", value="AI Engine ready...", container=True)
|
134 |
+
btn_buy = gr.Button("Buy More", visible=False, size='lg')
|
135 |
#btn_buy.click(fn=click_buy, outputs=mrk_title)
|
136 |
|
137 |
#Gradio themes:
|