gperdrizet commited on
Commit
4d43357
·
unverified ·
1 Parent(s): 4c58071

Updated app description.

Browse files
Files changed (1) hide show
  1. assets/html.py +10 -9
assets/html.py CHANGED
@@ -3,24 +3,25 @@
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
  )
 
3
  TITLE = (
4
  '''
5
  <center>
6
+ <h1>RSS feed reader</h1>
7
  </center>
8
  '''
9
  )
10
 
11
  DESCRIPTION = (
12
  '''
13
+ Functions to find, extract and summarize RSS feeds are complete.
14
+
15
+ <h2>Tools</h2>
16
 
17
  <ol>
18
+ <li><b>DONE</b> Given a website name or URL, find its RSS feed and return recent
19
+ article titles, links and a generated summary of content if avalible</li>
20
+ <li><b>TODO</b> Simple RAG on requested RSS feed content</li>
21
  </ol>
22
 
23
+ For now we dump the extracted RSS title, link and summary below. Try asking for a
24
+ feed by website name, website URL, or entering your favorite feed URI directly.
25
+ Suggestions: http://openai.com/news/rss.xml, hackernews.com, Hugging Face, etc
 
26
  '''
27
  )