{"id":28017987,"url":"https://github.com/helloxz/linksumm","last_synced_at":"2025-09-02T12:52:08.992Z","repository":{"id":290686919,"uuid":"974604489","full_name":"helloxz/linksumm","owner":"helloxz","description":"LinkSumm是一款使用AI大模型驱动的智能摘要提取器。","archived":false,"fork":false,"pushed_at":"2025-05-07T07:24:25.000Z","size":436,"stargazers_count":31,"open_issues_count":0,"forks_count":5,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-05-07T08:30:03.478Z","etag":null,"topics":["linksumm"],"latest_commit_sha":null,"homepage":"https://linksumm.aimerge.cc","language":"HTML","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"agpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/helloxz.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2025-04-29T03:14:08.000Z","updated_at":"2025-05-07T07:24:28.000Z","dependencies_parsed_at":"2025-04-30T03:25:40.320Z","dependency_job_id":"523587ab-d02e-4d4b-a1a8-34eda933abf7","html_url":"https://github.com/helloxz/linksumm","commit_stats":null,"previous_names":["helloxz/linksumm"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/helloxz/linksumm","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/helloxz%2Flinksumm","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/helloxz%2Flinksumm/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/helloxz%2Flinksumm/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/helloxz%2Flinksumm/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/helloxz","download_url":"https://codeload.github.com/helloxz/linksumm/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/helloxz%2Flinksumm/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":273287616,"owners_count":25078571,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-09-02T02:00:09.530Z","response_time":77,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["linksumm"],"created_at":"2025-05-10T13:01:31.175Z","updated_at":"2025-09-02T12:52:08.986Z","avatar_url":"https://github.com/helloxz.png","language":"HTML","funding_links":[],"categories":["HTML"],"sub_categories":[],"readme":"# LinkSumm\n\nLinkSumm是一款使用AI大模型驱动的智能摘要提取器，您可以输入一个URL地址，让AI为您总结内容。\n\n![c6f2f05dfe0c618c.png](https://img.rss.ink/imgs/2025/04/30/c6f2f05dfe0c618c.png)\n\n## 主要特点\n\n* [x] 输入URL总结内容\n* [x] 支持接入多种AI大模型，只要兼容OpenAI API接口均可。\n* [x] 支持流式传输\n* [x] 支持限制IP请求频率\n* [x] 支持限制总结的字符串长度\n* [x] 支持请求SPA应用\n* [x] 支持浏览器扩展（ [Chrome](https://chromewebstore.google.com/detail/linksumm/hecebmomkkjlpdhcbeiokoifoagfojdc) | [Firefox](https://addons.mozilla.org/zh-CN/firefox/addon/linksumm/) ）\n* [ ] 根据URL内容继续对话\n* [ ] 内容缓存\n* [ ] PWA支持\n* [ ] 开放API\n* [ ] 支持代理获取内容\n\n\n## 安装\n\n\u003e 目前仅支持Docker安装，请确保您已经安装Docker和Docker Compose\n\n新建`docker-compose.yaml`文件，内容如下：\n\n```yaml\nversion: '3.8'\n\nservices:\n  linksumm:\n    container_name: linksumm\n    image: helloz/linksumm\n    ports:\n      - \"2083:2083\"\n    restart: always\n    volumes:\n      - ./data:/opt/linksumm/app/data\n```\n\n然后输入`docker-compose up -d`启动。\n\n## 使用\n\nLinkSumm配置文件位于挂载目录下的`config/config.json`，使用标准的json格式：\n\n```json\n{\n    \"redis\":{\n        \"host\":\"127.0.0.1\",\n        \"port\":6379,\n        \"password\":\"xxx\",\n        \"db\":0\n    },\n    \"app\":{\n        \"req_limit\":100,\n        \"word_limit\":3000\n    },\n    \"site\":{\n        \"title\":\"LinkSumm\",\n        \"keywords\":\"\",\n        \"description\":\"\",\n        \"sub_title\":\"\"\n    },\n    \"models\":[\n        {\n            \"base_url\":\"https://api.openai.com/v1\",\n            \"model\":\"gpt-4o\",\n            \"api_key\":\"sk-xxx\",\n            \"name\":\"GPT-4o\"\n        }\n    ]\n}\n```\n\n需要修改`models`，添加您自己的AI大模型接口，大模型接口需要兼容OpenAI API格式，同时只需要路径的前缀部分，比如完整的API地址为：`https://api.openai.com/v1/chat/completions`，您只需要填写`https://api.openai.com/v1`，不需要末尾的`/chat/completions`，参数含义如下：\n\n* `models.[0].base_url`：API前缀地址，不需要末尾的`/chat/completions`\n* `models.[0].model`：模型参数值\n* `models.[0].api_key`：密钥信息\n* `models.[0].name`：前端显示的模型名称\n\n可以在`models`节点下添加多个模型，比如：\n\n```\n\"models\":[\n        {\n            \"base_url\":\"https://api.openai.com/v1\",\n            \"model\":\"gpt-4o\",\n            \"api_key\":\"sk-xxx\",\n            \"name\":\"GPT-4o\"\n        },\n        {\n            \"base_url\":\"https://api.deepseek.com/v1\",\n            \"model\":\"deepseek-chat\",\n            \"api_key\":\"sk-xxx\",\n            \"name\":\"DeepSeek\"\n        }\n    ]\n```\n\n**注意事项：**\n\n1. 参数修改完毕后请务必校验json格式正确，否则可能导致程序异常\n2. 修改参数后需要重启容器`docker restart linksumm`才会生效\n3. 然后访问`http://IP:2083`测试\n\n**其他参数**\n\n* `app.req_limit`：单个访客请求频率限制，单位为24H，超出请求频率后将被限制\n* `app.word_limit`：最大可输入的字符串长度\n\n## 已知问题\n\n* 如果对方网站使用了WAF，LinkSumm将无法进行获取和总结！\n\n## 问题反馈\n\n* 如果有任何问题可以在[Issues](https://github.com/helloxz/linksumm/issues) 中提交。\n* 或者添加我的微信：`xiaozme`，请务必备注LinkSumm\n\n## 其他产品\n\n如果您有兴趣，还可以了解我们的其他产品。\n\n* [Zdir](https://www.zdir.pro/zh/) - 一款轻量级、多功能的文件分享程序。\n* [OneNav](https://www.onenav.top/) - 高效的浏览器书签管理工具，将您的书签集中式管理。\n* [ImgURL](https://www.imgurl.org/) - 2017年上线的免费图床。","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhelloxz%2Flinksumm","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fhelloxz%2Flinksumm","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhelloxz%2Flinksumm/lists"}