Spaces:
Sleeping
Sleeping
Update src/webui.py
Browse files- src/webui.py +8 -1
src/webui.py
CHANGED
@@ -183,8 +183,15 @@ if __name__ == '__main__':
|
|
183 |
gr.Markdown("Duplicate the old CPU space for use in private: [](https://huggingface.co/spaces/r3gm/AICoverGen_old_stable_cpu?duplicate=true)\n\n")
|
184 |
|
185 |
# main tab
|
186 |
-
with gr.Tab("Find Models")
|
187 |
gr.Textbox(placeholder="Eg: Taylor Swift, Drake", max_lines=1, lines=1)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
188 |
with gr.Tab("Generate"):
|
189 |
|
190 |
with gr.Accordion('Main Options'):
|
|
|
183 |
gr.Markdown("Duplicate the old CPU space for use in private: [](https://huggingface.co/spaces/r3gm/AICoverGen_old_stable_cpu?duplicate=true)\n\n")
|
184 |
|
185 |
# main tab
|
186 |
+
with gr.Tab("Find Models"):
|
187 |
gr.Textbox(placeholder="Eg: Taylor Swift, Drake", max_lines=1, lines=1)
|
188 |
+
with gr.Row():
|
189 |
+
with gr.Column(scale=1):
|
190 |
+
text1 = gr.Textbox()
|
191 |
+
text2 = gr.Textbox()
|
192 |
+
with gr.Column(scale=4):
|
193 |
+
btn1 = gr.Button("Button 1")
|
194 |
+
btn2 = gr.Button("Button 2")
|
195 |
with gr.Tab("Generate"):
|
196 |
|
197 |
with gr.Accordion('Main Options'):
|