dwb2023 commited on
Commit
66b49d9
β€’
1 Parent(s): 994ffd2

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -116,7 +116,7 @@ app = gr.Blocks(theme="sudeepshouche/minimalist")
116
  with app:
117
  gr.Markdown("# Hugging Face Space / Model Repository Content Extractor")
118
  url_input = gr.Textbox(label="https:// URL of Repository", placeholder="for example, https://huggingface.co/llava-hf/llava-v1.6-mistral-7b-hf")
119
- output_display = gr.Textbox(label="Extracted Content", show_copy_button=True, lines=20, placeholder="Repository content will be extracted here...\n\nReview and search through the content here 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)
 
116
  with app:
117
  gr.Markdown("# Hugging Face Space / Model Repository Content Extractor")
118
  url_input = gr.Textbox(label="https:// URL of Repository", placeholder="for example, https://huggingface.co/llava-hf/llava-v1.6-mistral-7b-hf")
119
+ output_display = gr.Textbox(label="Extracted Content", show_copy_button=True, lines=20, placeholder="Repository content will be extracted here...\n\nReview and search through the content here OR simply copy it for offline analysis!!. πŸ€–")
120
  extract_button = gr.Button("Extract Content")
121
 
122
  extract_button.click(fn=extract_and_display, inputs=url_input, outputs=output_display)