前言

还在前言???帮 AI 快速总结嘛?哈哈~

本文为 hexo-ai-summaries 插件文档,插件主要功能是帮你插入 AI Html 至文章中,至于 Html 内容可自定,默认内容为适配 Gemini 和主题 ButterFly

部署 Gemini 服务

获取 Gemini Pro API KEY

进入 https://ai.google.dev/ 跟随官网描述即可。

部署 API Proxy

Google PaLM API 限制使用区域,你需要部署中转服务

使用 Netlify 部署,进入 palm-netlify-proxy,点击 Deploy to Netlify

Netlify 注册繁琐?

你可能会因为 Netlify 的身份验证而停止了此教程,再提供个方案,好好看下去~

  • 使用阿里云的 serverless (云函数) 反向代理 AI 服务(理论大部分 AI 服务都可使用) - nginx serverless

部署 Gemini OpenAI Proxy

这一步为可选,完成上面部署即可使用了。使用 赛博菩萨 cloudflare 部署该服务即可像使用 open ai 样使用 Gemini

打开 gemini-openai-proxy,复制 dist/main_cloudflare-workers.mjsCFworkers 中。

修改:

  • var BASE_URL => Netlify 提供的域名 或者 你自己的 gemini 服务
    var BASE_URL = "https://<your url>.netlify.app";
  • 找到 getToken 函数,修改内部的 apikey 为你的 Gemini API KEY
    if (!rawApikey.includes("#")) {
      return {
        // apikey: rawApikey,
        apikey: 'your api key here',
        useBeta: false
      };
    }
    const apikey = 'your api key here';
  • 【可选】搜索 access-control-allow-origin 修改为你的域名

测试服务

你的 header 需要携带 Authorization,任意值即可。你可以在上述 getToken 函数中修改此逻辑。

curl https://cloudflare部署地址/v1/chat/completions \
    -H "Authorization: xx \
    -H "Content-Type: application/json" \
    -d '{
        "model": "gpt-4o",
        "messages": [{"role": "user", "content": "Hello"}],
        "temperature": 0.7
        }'

配置 hexo-ai-summaries 插件

安装

pnpm add hexo-ai-summaries

使用

hexo/_config.yml 中配置 hexo-ai-summaries

root/_config.yml
hexo-ai-summaries: enable: true aiSummaryApi: https://<cloudflare workers url>.workers.dev/v1/chat/completions

在你的文章中也可主动关闭

title: xxx
date: xxx
categories: xxx
cover: xxx
# add this line to disable ai-summaries
ai-summaries: false

进阶

  1. 为了更好的让 ai 理解文章,传入至 ai 的内容为:文章标题:${tagConfig.title};文章目录:${tagConfig.toc};具体内容:${tagConfig.content},大部分情况下不需要设置该值,如需更改请修改 tagConfig 接受 document.querySelector的值。
  2. geminiConfig 中的 headersBoolean,你可以在 workers 中固定,此处 false 可以防止 options 请求
root/_config.yml
hexo-ai-summaries: enable: true aiSummaryApi: https://<cloudflare workers url>.workers.dev/v1/chat/completions # 只在该日期后的文章上生成 摘要 按钮 generateAfterDate: 2024/05 # 文字数量限制 => String.length maxToken: 30000 prompt: You are a highly skilled AI trained in language comprehension and summarization. I would like you to read the text delimited by triple quotes and summarize it into a concise abstract paragraph. Aim to retain the most important points, providing a coherent and readable summary that could help a person understand the main points of the discussion without needing to read the entire text. Please avoid unnecessary details or tangential points. Only give me the output and nothing else. Do not wrap responses in quotes. Respond in the Chinese language. geminiConfig: model: gpt-4o temperature: 0.7 headers: false tagConfig: title: .post-title content: .post-content toc: .toc-content

进进阶

如果你有其他的服务和样式,那你也可以使用该插件。hexo-ai-summaries 可将你的 html js css 插入文章中(.post-content 内)。
因为会将内容添加至 文章内容 最前端,若塞入整个 html 将会影响列表页的摘要展示,所以 cssjs 资源会以引入的方式加载(当然也会更加节省资源,和加快加载速度,有 CDN 的话)。会将你的文件生成在 public/hexo-ai-summaries 中。

hexo-ai-summaries:
  enable: true
  generateAfterDate: 2024/05
  customHtml:
    htmlFile: Gemini/gemini.html
    jsFile: Gemini/gemini.js
    styleFile: Gemini/gemini.css

prompt 进阶

prompt 中你可以让 Gemini 将相关词汇使用 "``" 回复,在渲染对话时会将其渲染为 code 标签。(目前仅支持此扩展)

缓存

你可以在 CFworkers 中使用 kV 缓存结果,或阿里云函数部署的可以使用 Nas 存储,插件在请求体中携带了 titleupdateTime,可以由此判断,具体逻辑不赘述。
你可以一次性的返回结果(保持结构体一致即可),插件也会 fake 出流式输出效果

结语

若服务为部署在 阿里云函数 中,会有冷启动时间。

https://immmmm.com/gemini-pro-ai/
https://github.com/tardis-ksh/hexo-ai-summaries