FreshRSS / Extensions

A repository containing all the official FreshRSS extensions
GNU Affero General Public License v3.0
375 stars 58 forks source link

Add Article Summary Extension for FreshRSS #259

Closed LiangWei88 closed 3 days ago

LiangWei88 commented 3 days ago

I have developed a new FreshRSS extension called "Article Summary" that allows users to generate summaries of articles using a language model API that conforms to the OpenAI API specification. This extension is designed to be flexible and can be configured to work with any LLM service that follows the OpenAI API format, including self-hosted models.

Key Features:

Comparison with Existing Extensions: xExtension-NewsAssistant: This extension summarizes all news titles, whereas my extension focuses on summarizing the content of individual articles.

kagiSummarizer: This extension is limited to using Kagi's summarization service. My extension is designed to be more flexible, allowing users to connect to any LLM service that follows the OpenAI API format, including self-hosted models.

Alkarex commented 3 days ago

Hello, I can see that your code is using several obsolete / deprecated constructs and has no automated tests. Please check for instance https://github.com/Joedmin/xExtension-wallabag-button/pull/1 on how to upgrade your code-base

Alkarex commented 3 days ago

For instance image

LiangWei88 commented 3 days ago

For instance image

Thank you very much, I will find time to look at the sample code and update my Extension