Spaces:
Running
on
Zero
Running
on
Zero
Update app.py
Browse files
app.py
CHANGED
@@ -114,9 +114,9 @@ def extract_and_display(url):
|
|
114 |
app = gr.Blocks(theme="sudeepshouche/minimalist")
|
115 |
|
116 |
with app:
|
117 |
-
gr.Markdown("#
|
118 |
url_input = gr.Textbox(label="Hugging Face Space/Model URL", placeholder="for example, https://huggingface.co/llava-hf/llava-v1.6-mistral-7b-hf")
|
119 |
-
output_display = gr.Textbox(show_copy_button=True, lines=20, placeholder="
|
120 |
extract_button = gr.Button("Extract Content")
|
121 |
|
122 |
extract_button.click(fn=extract_and_display, inputs=url_input, outputs=output_display)
|
|
|
114 |
app = gr.Blocks(theme="sudeepshouche/minimalist")
|
115 |
|
116 |
with app:
|
117 |
+
gr.Markdown("# HF Space / Model Content Extractor")
|
118 |
url_input = gr.Textbox(label="Hugging Face Space/Model URL", placeholder="for example, https://huggingface.co/llava-hf/llava-v1.6-mistral-7b-hf")
|
119 |
+
output_display = gr.Textbox(show_copy_button=True, lines=20, placeholder="Repository content will be extracted here...\n\nReview and search through the content OR simply copy and load it into your favorite LLM for analysis!. 🤖")
|
120 |
extract_button = gr.Button("Extract Content")
|
121 |
|
122 |
extract_button.click(fn=extract_and_display, inputs=url_input, outputs=output_display)
|