SpyCoder77 commited on
Commit
2df7f7e
·
verified ·
1 Parent(s): f60294c

Moved Search into the download model tab

Browse files
Files changed (1) hide show
  1. src/webui.py +25 -51
src/webui.py CHANGED
@@ -193,31 +193,6 @@ if __name__ == '__main__':
193
  gr.Label('AICoverGen WebUI created with ❤️', show_label=False)
194
  gr.Markdown("Duplicate this space for use in private: [![Duplicate this Space](https://huggingface.co/datasets/huggingface/badges/raw/main/duplicate-this-space-sm-dark.svg)](https://huggingface.co/spaces/SpyCoder77/AICoverGen?duplicate=true)\n\n")
195
 
196
- with gr.Tab("Search"):
197
- gr.Markdown("# Model Search")
198
-
199
- with gr.Column():
200
- with gr.Row():
201
- query_input = gr.Textbox(
202
- label="Search Query",
203
- placeholder="Enter model name or keyword...",
204
- lines=1,
205
- min_width=320
206
- )
207
-
208
- with gr.Row():
209
- output_df = gr.Dataframe(
210
- headers=["name", "author", "downloads", "downloadURL"],
211
- datatype=["str", "str", "number", "str"],
212
- row_count=5,
213
- col_count=(4, "fixed"),
214
- )
215
-
216
- query_input.input(
217
- fn=filter_records,
218
- inputs=query_input,
219
- outputs=output_df
220
- )
221
 
222
 
223
  with gr.Tab("Generate"):
@@ -318,32 +293,31 @@ if __name__ == '__main__':
318
  cache_examples=False,
319
  )
320
 
321
- with gr.Tab('From Public Index'):
322
-
323
- gr.Markdown('## How to use')
324
- gr.Markdown('- Click Initialize public models table')
325
- gr.Markdown('- Filter models using tags or search bar')
326
- gr.Markdown('- Select a row to autofill the download link and model name')
327
- gr.Markdown('- Click Download')
328
-
329
- with gr.Row():
330
- pub_zip_link = gr.Text(label='Download link to model')
331
- pub_model_name = gr.Text(label='Model name')
332
-
333
- with gr.Row():
334
- download_pub_btn = gr.Button('Download 🌐', variant='primary', scale=19)
335
- pub_dl_output_message = gr.Text(label='Output Message', interactive=False, scale=20)
336
-
337
- filter_tags = gr.CheckboxGroup(value=[], label='Show voice models with tags', choices=[])
338
- search_query = gr.Text(label='Search')
339
- load_public_models_button = gr.Button(value='Initialize public models table', variant='primary')
340
-
341
- public_models_table = gr.DataFrame(value=[], headers=['Model Name', 'Description', 'Credit', 'URL', 'Tags'], label='Available Public Models', interactive=False)
342
- public_models_table.select(pub_dl_autofill, inputs=[public_models_table], outputs=[pub_zip_link, pub_model_name])
343
- load_public_models_button.click(load_public_models, outputs=[public_models_table, filter_tags])
344
- search_query.change(filter_models, inputs=[filter_tags, search_query], outputs=public_models_table)
345
- filter_tags.change(filter_models, inputs=[filter_tags, search_query], outputs=public_models_table)
346
- download_pub_btn.click(download_online_model, inputs=[pub_zip_link, pub_model_name], outputs=pub_dl_output_message)
347
 
348
  # Upload tab
349
  with gr.Tab('Upload model'):
 
193
  gr.Label('AICoverGen WebUI created with ❤️', show_label=False)
194
  gr.Markdown("Duplicate this space for use in private: [![Duplicate this Space](https://huggingface.co/datasets/huggingface/badges/raw/main/duplicate-this-space-sm-dark.svg)](https://huggingface.co/spaces/SpyCoder77/AICoverGen?duplicate=true)\n\n")
195
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
196
 
197
 
198
  with gr.Tab("Generate"):
 
293
  cache_examples=False,
294
  )
295
 
296
+ with gr.Tab("Search"):
297
+ gr.Markdown("# Model Search")
298
+
299
+ with gr.Column():
300
+ with gr.Row():
301
+ query_input = gr.Textbox(
302
+ label="Search Query",
303
+ placeholder="Enter model name or keyword...",
304
+ lines=1,
305
+ min_width=320
306
+ )
307
+
308
+ with gr.Row():
309
+ output_df = gr.Dataframe(
310
+ headers=["name", "author", "downloads", "downloadURL"],
311
+ datatype=["str", "str", "number", "str"],
312
+ row_count=5,
313
+ col_count=(4, "fixed"),
314
+ )
315
+
316
+ query_input.input(
317
+ fn=filter_records,
318
+ inputs=query_input,
319
+ outputs=output_df
320
+ )
 
321
 
322
  # Upload tab
323
  with gr.Tab('Upload model'):