gperdrizet commited on
Commit
397bedd
·
unverified ·
1 Parent(s): e6f6cfa

Updated title/description.

Browse files
Files changed (1) hide show
  1. assets/html.py +17 -2
assets/html.py CHANGED
@@ -3,9 +3,24 @@
3
  TITLE = (
4
  '''
5
  <center>
6
- <h1>RSS feed reader</h1>
7
  </center>
8
  '''
9
  )
10
 
11
- DESCRIPTION = 'Enter a website to extract RSS feed entry titles.'
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3
  TITLE = (
4
  '''
5
  <center>
6
+ <h1>RSS feed finder/extractor</h1>
7
  </center>
8
  '''
9
  )
10
 
11
+ DESCRIPTION = (
12
+ '''
13
+ Functions to find and extract RSS feeds are complete-ish. No AI
14
+ yet, plan for tomorrow is to build two tools:
15
+
16
+ <ol>
17
+ <li>Human readable summaries of requested RSS feed</li>
18
+ <li>Simple RAG on requested RSS feed content</li>
19
+ </ol>
20
+
21
+ For now we just dump the extracted RSS content below. Try asking
22
+ for a feed by website name, website URL, or entering your favorite
23
+ feed URI directly. Suggestions: http://openai.com/news/rss.xml,
24
+ hackernews.com, Hugging Face, etc
25
+ '''
26
+ )