Updated title/description.
Browse files- assets/html.py +17 -2
assets/html.py
CHANGED
@@ -3,9 +3,24 @@
|
|
3 |
TITLE = (
|
4 |
'''
|
5 |
<center>
|
6 |
-
<h1>RSS feed
|
7 |
</center>
|
8 |
'''
|
9 |
)
|
10 |
|
11 |
-
DESCRIPTION =
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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 |
+
)
|