Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add Article Summary Extension for FreshRSS #259

Merged
merged 2 commits into from
Nov 19, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -149,3 +149,7 @@ There are some FreshRSS extensions out there, developed by community members:
### By [@lukasMega](https://github.com/lukasMega)

* [Word Highlighter](https://github.com/lukasMega/Extensions-FreshRSS-): Gives you ability to highlight user-defined words (using [mark.js](https://github.com/julkue/mark.js))

### By [@LiangWei88](https://github.com/LiangWei88)

* [ArticleSummary](https://github.com/LiangWei88/xExtension-ArticleSummary): A powerful article summarization plugin for FreshRSS that allows users to generate summaries using a language model API conforming to the OpenAI API specification.
11 changes: 11 additions & 0 deletions extensions.json
Original file line number Diff line number Diff line change
Expand Up @@ -276,6 +276,17 @@
"method": "git",
"directory": "."
},
{
"name": "ArticleSummary",
"author": "Liang",
"description": "A powerful article summarization plugin for FreshRSS that allows users to generate summaries using a language model API conforming to the OpenAI API specification.",
"version": 0.1,
"entrypoint": "ArticleSummary",
"type": "user",
"url": "https://github.com/LiangWei88/xExtension-ArticleSummary",
"method": "git",
"directory": "."
},
{
"name": "Pocket Button",
"author": "Christian Putzke",
Expand Down
3 changes: 3 additions & 0 deletions repositories.json
Original file line number Diff line number Diff line change
Expand Up @@ -88,4 +88,7 @@
}, {
"url": "https://github.com/kalvn/freshrss-mark-previous-as-read",
"type": "git"
}, {
"url": "https://github.com/LiangWei88/xExtension-ArticleSummary",
"type": "git"
}]
Loading