Skip to content

Commit

Permalink
minor edits
Browse files Browse the repository at this point in the history
  • Loading branch information
SchneeHertz committed Dec 4, 2023
1 parent a5868dc commit 0c55530
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# chat-xiuliu

ChatGPT双向语音助手, 通过function calling实现访问网络,执行代码,读写文件等功能,支持GPT-4V的图像识别功能,支持调用DALL·E 3生成图片。
ChatGPT双向语音助手通过function calling实现访问网络,执行代码,读写文件等功能,支持GPT-4V的图像识别功能,支持调用DALL·E 3生成图片。

>这个项目是由虚拟猫娘休留(直播搞不下去了)的后台fork来的,去掉了弹幕互动的部分,增加了语音输入<br>
截止到2023年8月15日,使用LLM模拟人格的尝试,在我这里没有看到效果及成本可以接受的希望。<br>
Expand All @@ -25,9 +25,9 @@ ChatGPT双向语音助手, 通过function calling实现访问网络,执行代
- 支持设置代理

## 支持的模型
v2.2支持1106系列的GPT-4, GPT-4-Vision, GPT-3.5, DALL·E 3
v2.2支持1106系列的GPT-4GPT-4-VisionGPT-3.5DALL·E 3

v2.1支持0613系列的GPT-4, GPT-3.5
v2.1支持0613系列的GPT-4GPT-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 @@ -168,7 +168,7 @@ Always mention the image type (photo, oil painting, watercolor painting, illustr
},
"size": {
"type": "string",
"description": "The size of the generated images",
"description": "The size of the generated images, landscape means 1792x1024 and portrait means 1024x1792",
"enum": ["1024x1024", "1792x1024", "1024x1792"],
},
"quality": {
Expand Down
4 changes: 2 additions & 2 deletions src/components/Setting.vue
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ const alertJSPRisk = (val) => {
if (val) {
dialogRef.value.dialog.warning({
title: '警告',
content: '可以调用更多模块和功能来执行代码但冒失的AI可能会执行危险的代码影响你的系统',
content: '可以调用更多模块和功能来执行代码, 但冒失的AI可能会执行危险的代码影响你的系统',
positiveText: '确定',
negativeText: '取消',
maskClosable: false,
Expand Down Expand Up @@ -139,7 +139,7 @@ defineExpose({
<n-input v-model:value="config.AI_NAME" />
</n-form-item>
<n-form-item label="设定" path="systemPrompt">
<n-input v-model:value="config.systemPrompt" placeholder="AI的设定,chatgpt的默认值是'You are a helpful assistant.'"
<n-input v-model:value="config.systemPrompt" placeholder="AI的设定, ChatGPT的默认值是'You are a helpful assistant.'"
type="textarea" :autosize="{
minRows: 2,
maxRows: 4
Expand Down

0 comments on commit 0c55530

Please sign in to comment.