Spaces:
Running
Running
-- Story link is added.
Browse files
README.md
CHANGED
|
@@ -13,6 +13,8 @@ Scrape any web page, ask questions, and get structured answers powered by LangCh
|
|
| 13 |
|
| 14 |
๐ **Live Demo**: https://huggingface.co/spaces/frkhan/llm-web-scrapper
|
| 15 |
|
|
|
|
|
|
|
| 16 |
---
|
| 17 |
|
| 18 |
### ๐ Features
|
|
|
|
| 13 |
|
| 14 |
๐ **Live Demo**: https://huggingface.co/spaces/frkhan/llm-web-scrapper
|
| 15 |
|
| 16 |
+
๐ **Read Full Story**: [From Broken Selectors to Intelligent Scraping: A Journey into LLM-Powered Web Automation](https://medium.com/@frkhan/from-broken-selectors-to-intelligent-scraping-a-journey-into-llm-powered-web-automation-fc76d5fe2dbc)
|
| 17 |
+
|
| 18 |
---
|
| 19 |
|
| 20 |
### ๐ Features
|
app.py
CHANGED
|
@@ -156,6 +156,15 @@ with gr.Blocks() as gradio_ui:
|
|
| 156 |
</div>
|
| 157 |
""")
|
| 158 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 159 |
with gr.Accordion("โน๏ธ How to Use This App", open=False):
|
| 160 |
gr.Markdown("""
|
| 161 |
This app combines web scraping with the power of Large Language Models (LLMs) to extract specific information from web pages. Here's how it works:
|
|
|
|
| 156 |
</div>
|
| 157 |
""")
|
| 158 |
|
| 159 |
+
gr.HTML("""
|
| 160 |
+
<div style="display: flex; align-items: center; gap: 10px; margin-bottom: 20px;">
|
| 161 |
+
<span style="font-size: 16px;">๐ <strong>Read the full story:</strong></span>
|
| 162 |
+
<a href="https://medium.com/@frkhan/from-broken-selectors-to-intelligent-scraping-a-journey-into-llm-powered-web-automation-fc76d5fe2dbc" target="_blank">
|
| 163 |
+
<img src="https://img.shields.io/badge/Medium-Read%20Story-black?style=for-the-badge&logo=medium" alt="Read Story on Medium">
|
| 164 |
+
</a>
|
| 165 |
+
</div>
|
| 166 |
+
""")
|
| 167 |
+
|
| 168 |
with gr.Accordion("โน๏ธ How to Use This App", open=False):
|
| 169 |
gr.Markdown("""
|
| 170 |
This app combines web scraping with the power of Large Language Models (LLMs) to extract specific information from web pages. Here's how it works:
|