Skip to content
This repository was archived by the owner on Feb 10, 2025. It is now read-only.

Commit 32ebbec

Browse files
authored
feat: 增加带格式的复制 (#182)
* feat: 增加带格式的复制 * feat: 移除前端超时设定 * chore: update deps * feat: 添加权限页面 * feat: 设定页面优化 * feat: 更新 chatgpt 以支持 `gpt-3.5-turbo-0301` * chore: version 2.9.0
1 parent 42e320f commit 32ebbec

File tree

28 files changed

+689
-306
lines changed

28 files changed

+689
-306
lines changed

.env

-3
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,3 @@
22
VITE_GLOB_API_URL=/api
33

44
VITE_APP_API_BASE_URL=http://localhost:3002/
5-
6-
# Glob API Timeout (ms)
7-
VITE_GLOB_API_TIMEOUT=100000

CHANGELOG.md

+13
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,16 @@
1+
## v2.9.0
2+
3+
`2023-03-02`
4+
5+
### Feature
6+
- 现在能复制带格式的消息文本
7+
- 新设计的设定页面,可以自定义姓名、描述、头像(链接方式)
8+
- 新增`403``404`页面以便扩展
9+
10+
## Enhancement
11+
- 更新 `chatgpt` 使 `ChatGPTAPI` 支持 `gpt-3.5-turbo-0301`(默认)
12+
- 取消了前端超时限制设定
13+
114
## v2.8.3
215

316
`2023-03-01`

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "chatgpt-web",
3-
"version": "2.8.3",
3+
"version": "2.9.0",
44
"private": false,
55
"description": "ChatGPT Web",
66
"author": "ChenZhaoYu <[email protected]>",

service/package.json

+5-5
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
"common:cleanup": "rimraf node_modules && rimraf pnpm-lock.yaml"
2525
},
2626
"dependencies": {
27-
"chatgpt": "^4.7.2",
27+
"chatgpt": "^5.0.1",
2828
"dotenv": "^16.0.3",
2929
"esno": "^0.16.3",
3030
"express": "^4.18.2",
@@ -33,11 +33,11 @@
3333
"socks-proxy-agent": "^7.0.0"
3434
},
3535
"devDependencies": {
36-
"@antfu/eslint-config": "^0.35.2",
36+
"@antfu/eslint-config": "^0.35.3",
3737
"@types/express": "^4.17.17",
38-
"@types/node": "^18.14.0",
39-
"eslint": "^8.34.0",
40-
"rimraf": "^4.1.2",
38+
"@types/node": "^18.14.3",
39+
"eslint": "^8.35.0",
40+
"rimraf": "^4.1.3",
4141
"tsup": "^6.6.3",
4242
"typescript": "^4.9.5"
4343
}

0 commit comments

Comments
 (0)