frkhan commited on
Commit
22fa711
ยท
1 Parent(s): 4886f5d

-- Story link is added.

Browse files
Files changed (2) hide show
  1. README.md +2 -0
  2. app.py +9 -0
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: