Spaces:
Runtime error
Runtime error
File size: 1,262 Bytes
e66e891 4d43357 e66e891 397bedd eb02e01 c692c0a eb02e01 c692c0a eb02e01 4d43357 397bedd 4d43357 397bedd |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 |
'''HTML elements for Gradio interface.'''
TITLE = (
'''
<center>
<h1>RSS feed reader</h1>
</center>
'''
)
DESCRIPTION = (
'''
<p>RSS feed reader MCP server. See
<a href="https://huggingface.co/spaces/Agents-MCP-Hackathon/rss-mcp-client">
Agentic RSS reader</a>for a demonstration. Check out the
<a href="https://github.com/gperdrizet/MCP-hackathon/tree/main">
main project repo on GitHub</a>. Both Spaces by
<a href="https://www.linkedin.com/in/gperdrizet">George Perdrizet</a>.</p>
<p>This Space is not meant to be used directly, but you can try out the bare tool below.
Enter a website name, website URL, or feed URI. The tool will do it's best
to find the feed and return titles, links and summaries for the three most recent posts.
Suggestions: http://openai.com/news/rss.xml, hackernews.com, slashdot, etc.</p>
<h2>Tools</h2>
<ol>
<li><b>DONE</b> Given a website name or URL, find its RSS feed and return recent
article titles, links and a generated summary of content if avalible</li>
<li><b>TODO</b> Simple RAG on requested RSS feed content</li>
</ol>
'''
)
|