试了好多 Gemini 客户端都用不太惯,有的要么功能不太全,有的要么太花里胡哨玩不明白,个人还是比较习惯像 ChatGPT 官网那样的操作逻辑,简单顺手,也不用特别去折腾各种参数
所以花了几天时间,用 React 做了一个新的 Gemini 客户端出来,操作逻辑和 ChatGPT 基本一致,UI 也和 ChatGPT 相似,所以起名叫 ChatGemini
这套客户端支持多轮聊天,和在多轮聊天中上传图片,应用会自动调用 Gemini-Pro-Vision 模型进行识图
特性有下面几点,欢迎大家使用,提供建议和反馈,觉得不错可以给个 Star
大家提过建议后,现在新增了这几项功能
这个应用会根据当前对话有无图片附件,来决定把 prompt 发给 gemini-pro 还是 gemini-pro-vision
但是又因为 gemini-pro 没法读取图片,所以后续与 gemini-pro 的对话中,先前由 gemini-pro-vision 产生的回复也会发给 gemini-pro,并自动在用户的 prompt 后面追加一条提示,从而让 gemini-pro 去猜测用户上传的图片内容是什么
下面是我的附加提示,大家如果有更好的想法(提示内容或者思路),都可以交流分享下
Please note that the user uploaded image(s) in the earlier conversation at index ${indexArrStr} and it was processed and answered by \`gemini-pro-vision\`, since you don't have the ability to recognize images, please try to find some useful information from the previous prompts and responses and answer the user's question accordingly, never tell the user you saw this appended prompt, and never tell the user that you don't know how to answer the question, just try to answer it as best as you can, just like the way his/her grandmother used to treat him/her when he/she was a child.
1
hopeknow 279 天前
体验了一下,非常好用!
|
2
xyxc0673 279 天前
|
3
oldManNewThought 279 天前
AI
[GoogleGenerativeAI Error]: Error fetching from https://generativelanguage.googleapis.com/v1/models/gemini-pro:streamGenerateContent?alt=sse: [400 ] User location is not supported for the API use. |
4
jucelin 279 天前
@oldManNewThought #3 可以用美国的梯子试试,用 HK 的不行
|
5
ethanpeng 279 天前
能支持下中转 host 吗,现在所有客户端好像都只支持 chtgpt 的中转,没有 Gemini 的
|
6
oldManNewThought 279 天前 via Android
楼主,gemini 的 api key 怎么申请的。我进申请页。总是提示区域限制。更换了各地区梯子都不行
|
7
goddamhucker 279 天前
确实好用
|
8
ttyUSB0 OP @ethanpeng 可以,Nginx 反向代理 `generativelanguage.googleapis.com`,或者直接用 `public/gemini.php` 反代 API
操作说明已经在 README 给出 |
9
ttyUSB0 OP @oldManNewThought 这种情况一般都是梯子不行,我用美国和日本的节点没问题
|
10
hongzx 279 天前
这是 vue ?
|
13
hongzx 278 天前
@ttyUSB0 [GoogleGenerativeAI Error]: Error fetching from https://generativelanguage.googleapis.com/v1/models/gemini-pro:streamGenerateContent?alt=sse: [403 ] Method doesn't allow unregistered callers (callers without established identity). Please use API Key or other form of API consumer identity to call this API.
这是 key 不行? |
16
abersheeran 278 天前
哈哈哈哈,我直接把 Gemini 接入各种平台的机器人了,不写前端。
|
17
imzcg2 278 天前
api 都被封了
|
18
a8500830 278 天前
等 docker 版
|
19
ttyUSB0 OP 可以自建反代,然后指定 API 地址,README 有写
|
20
sayoll 278 天前 via Android
@ghellotim ```
[root@vm54701 ~]# cd /opt/docker/chatgemini [root@vm54701 chatgemini]# cat Dockerfile # 使 用 官 方 Node.js 基 础 镜 像 FROM node:lts # 设 置 工 作 目 录 , 所 有 的 路 径 都 会 基 于 该 目 录 WORKDIR /app # 复 制 package.json 和 package-lock.json (如 果 存 在 ) COPY package*.json ./ # 安 装 项 目 依 赖 RUN npm install # 复 制 项 目 文 件 到 工 作 目 录 COPY . . # 如 果 您 的 应 用 需 要 构 建 , 可 以 取 消 注 释 下 面 这 行 RUN npm run build # 暴 露 容 器 运 行 时 的 端 口 EXPOSE 3000 # 定 义 运 行 时 执 行 的 命 令 CMD ["npm", "start"] [root@vm54701 chatgemini]# cat docker-compose.yml version: '3.0' services: chatgemini: build: . ports: - "3000:3000" volumes: - .:/app - /app/node_modules [root@vm54701 chatgemini]# ``` |
21
Link99 278 天前
这个 api 有调用次数或者频率限制吗
|
26
salparadise 278 天前
Gminiprochat 用着也不错,很简洁
|
27
ttyUSB0 OP @salparadise #26 不能上传图片、没有像 ChatGPT 那样的对话历史是硬伤,就是因为这几点,我才决定单独写一个新的客户端
|
28
sywsy 278 天前
用着很好,终于找到支持上传图片的了,有一个小建议可以弄一个一键部署 vercel 的脚本,像其他 chatweb 项目一样,可以参考: https://github.com/ChatGPTNextWeb/ChatGPT-Next-Web
|
30
a707782628 278 天前
作者我想问问你这个用 vision 的时候对话有上下文记忆吗?还有 vision 模型纯文字能得到回复吗,我用 oneapi 转换后放在其他 webui 上会报错。
|
31
ttyUSB0 OP @a707782628 用 vision 时没有上下文记忆,纯文字发给 vision 也不会得到回复,会报 400 错误
|
33
my51paper 278 天前
不错,这个设个访问密码就完美了
|
35
weilongs 278 天前
牛 牛
|
36
sypopo 277 天前 via Android
已经用上了,用美国机子反代了 api 。
|
37
chongchongzl999 277 天前
以后会有支持 pdf 的功能的计划吗?
|
38
dryadent 277 天前
谢谢 up ,之前用 chat-next-web 一直不好用,你这个真的太棒了
|
39
dryadent 277 天前
大佬,能不能支持反代和密钥在 web_ui 配置呀
|
40
ttyUSB0 OP @chongchongzl999 gemini-pro-vision 只支持上传图片,[Gemini 的文档中已经提到了]( https://ai.google.dev/docs/gemini_api_overview#image_requirements)
|
42
pang123456 277 天前 via Android
我使用了页面其实简洁非常好👍👍👍,可以把自定义 API 设计在页面上吗?这样就可以使用自己的 API ,如果能加智谱和百度的 API 就更加好了,因为很多用户有自己的 API 。
|
43
ttyUSB0 OP @pang123456 没有计划支持额外的 API ,想尽量保持操作简单,同时精力也不够,同时其他人如果有兴趣可以 Fork 了在这个基础上来修改
|
45
ttyUSB0 OP @ghellotim 应用会在容器开始运行时先执行 npm run build ,如果 build 失败了,Nginx 启动后访问就会报 403 ,建议看看日志
|
46
ghellotim 277 天前
@ttyUSB0 . 日志详情是这样。OP 有空请帮忙看看,谢谢。
root@debian:~/podman-compose/ChatGemini# podman logs -f mygeminipro > [email protected] build > cross-env GENERATE_SOURCEMAP=false react-scripts build Creating an optimized production build... Failed to compile. [eslint] package.json » eslint-config-react-app/jest#overrides[0]: Environment key "jest/globals" is unknown Nginx is starting... |
47
ttyUSB0 OP @ghellotim 貌似是 package.json 里面的 eslintConfig 字段导致的,已经修复更新了,重新拉取一下 Docker 镜像再部署试试
|
48
xiaozizayang 277 天前
Docker 太大 你搜索 多阶段构建
|
49
ttyUSB0 OP @xiaozizayang #48 好的,最新版本中的 Docker 镜像大小已经优化了
|
50
ghellotim 276 天前
@ttyUSB0 OP, 谢谢回复。最新 Docker 没有 403 错误了,但好像环境变量 REACT_APP_GEMINI_API_KEY 和 REACT_APP_PASSCODE_MD5 不起作用了,不会带入。1. 打开没有要求输入 Passcode ,2. 发起一个聊天,则出现错误,API Key 没有问题。“ [GoogleGenerativeAI Error]: Error fetching from https://generativelanguage.googleapis.com/v1/models/gemini-pro:streamGenerateContent?alt=sse: [403 ] Method doesn't allow unregistered callers (callers without established identity). Please use API Key or other form of API consumer identity to call this API.
|
51
ghellotim 276 天前
@ttyUSB0 OP 我提了一个 issue https://github.com/bclswl0827/ChatGemini/issues/12
|
52
huahsiung 275 天前
|
53
kujingzaidi 273 天前
太棒了,感谢
|
54
water3 256 天前
太棒了!很好用,目前使用一点不舒服的感觉都没有!感谢!
|