vlinktotext/README.md

21 lines
1.1 KiB
Markdown
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# jina_sumary
ChatGPT on WeChat项目插件, 使用jina reader和ChatGPT解析网页内容
支持解析公众号、小红书、csdn等分享卡片链接(有的卡片链接会触发验证,一般直链没有此问题)
![wechat_mp](./docs/images/wechat_mp.jpg)
![red](./docs/images/red.jpg)
![csdn](./docs/images/csdn.jpg)
config.json 配置说明
```bash
{
"jina_reader_base": "https://r.jina.ai", # jina reader链接默认为https://r.jina.ai
"dify_base_url": "", # dify api链接默认为空
"dify_api_key": "app-XXXX", # dify api key
"max_words": 8000, # 网页链接内容的最大字数防止超过最大输入token使用字符串长度简单计数
"white_url_list": [], # url白名单, 列表为空时不做限制黑名单优先级大于白名单即当一个url既在白名单又在黑名单时黑名单生效
"black_url_list": ["https://support.weixin.qq.com", "https://channels-aladin.wxqcloud.qq.com"] # url黑名单排除不支持总结的视频号等链接
}
```