Skip to content

Commit

Permalink
update readme
Browse files Browse the repository at this point in the history
  • Loading branch information
SchneeHertz committed Nov 8, 2023
1 parent 77ee03c commit 70c9170
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
7 changes: 6 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# chat-xiuliu

ChatGPT双向语音助手, 通过function calling实现访问网络,执行代码,读写文件等功能。
ChatGPT双向语音助手, 通过function calling实现访问网络,执行代码,读写文件等功能,支持gpt-4v的图像识别功能

>这个项目是由虚拟猫娘休留(直播搞不下去了)的后台fork来的,去掉了弹幕互动的部分,增加了语音输入<br>
截止到2023年8月15日,使用LLM模拟人格的尝试,在我这里没有看到效果及成本可以接受的希望。<br>
Expand All @@ -9,6 +9,7 @@ ChatGPT双向语音助手, 通过function calling实现访问网络,执行代
## 功能
- 从麦克风或界面接收问题
- 使用语音回答问题并显示在界面
- 上传图片
- 调用函数处理任务
- 连续调用函数处理
- 对话内容回忆
Expand All @@ -22,6 +23,10 @@ ChatGPT双向语音助手, 通过function calling实现访问网络,执行代
- 支持兼容openai api格式的其他api端点
- 支持设置代理

## 支持的模型
v2.2支持1106系列的GPT-4, GPT-4-Vision, GPT-3.5
v2.1支持0613系列的GPT-4, GPT-3.5

## 截图
![screenshot_1.jpg](https://raw.githubusercontent.com/SchneeHertz/chat-xiuliu/master/screenshots/screenshot_1.jpg)

Expand Down
2 changes: 1 addition & 1 deletion modules/functions.js
Original file line number Diff line number Diff line change
Expand Up @@ -196,7 +196,7 @@ const functionAction = {
return `${AI_NAME}运行了\n\`\`\`javascript\n${code}\n\`\`\``
},
openLocalFileOrWebpage ({ filePath, url, type }) {
return `${AI_NAME}打开了 ${type === 'file' ? filePath : url}`
return `${AI_NAME}请求打开 ${type === 'file' ? filePath : url}`
}
}

Expand Down

0 comments on commit 70c9170

Please sign in to comment.