File size: 621 Bytes
06ffc6c |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 |
'''Collection of HTML elements for Gradio interface.'''
TITLE = (
'''
<center>
<h1>Agentic RSS reader</h1>
</center>
'''
)
DESCRIPTION = (
'''
<p>Uses sister Space
<a href='https://huggingface.co/spaces/Agents-MCP-Hackathon/rss-mcp-server'>
RSS feed reader</a> via MCP. Click 'Connect to MCP server' to get started.
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>
'''
)
|