Skip to content

Commit 08fd225

Browse files
committed
feat: Complete unlimited conversation function
1 parent d1ed689 commit 08fd225

File tree

28 files changed

+1062
-550
lines changed

28 files changed

+1062
-550
lines changed

CHANGE_LOG.md

+10-3
Original file line numberDiff line numberDiff line change
@@ -2,19 +2,26 @@
22

33
## v0.9.2
44

5-
> 2023-09-20
5+
> 2023-09-22
6+
7+
### Add
8+
9+
- Added support for configuring a member threshold for session summarization to achieve the effect of "unlimited sessions"
10+
- "Session Settings" added support for configuring the threshold of message compression for historical messages.
611

712
### Fixed
813

914
- Fix avatar UI display error issue
1015
- Fix configuration error in .env.local.demo file
11-
- Fix multiple language configuration errors.
12-
- Fix the issue of parsing error in react-markdown caused by upgrading remark-gfm version.
16+
- Fix multiple language configuration errors
17+
- Fix the issue of parsing error in react-markdown caused by upgrading remark-gfm version
18+
- Fix the display effect of the loading icon during session loading
1319

1420
### Changed
1521

1622
- Reconstruct some page module UI and migrate to shadcn/ui
1723
- Adjust the proxy configuration logic for OpenAI API Key, fix [#11](https://github.com/LTopx/Le-AI/issues/11)
24+
- Disable voice playback during conversation loading.
1825

1926
## v0.9.1
2027

CHANGE_LOG.zh_CN.md

+8-1
Original file line numberDiff line numberDiff line change
@@ -2,19 +2,26 @@
22

33
## v0.9.2
44

5-
> 2023-09-20
5+
> 2023-09-22
6+
7+
### 新增
8+
9+
- 新增支持配置会员阈值进行会话总结,达到“无限会话”的效果
10+
- "会话设置" 新增支持配置 历史消息压缩阈值
611

712
### 修复
813

914
- 修复 avatar UI 显示错误问题
1015
- 修复 .env.local.demo 文件中的配置错误
1116
- 修复多语言配置错误
1217
- 修复 remark-gfm 版本升级后造成 react-markdown 内容解析错误的问题
18+
- 修复会话 loading 时的 Loading 图标显示效果
1319

1420
### 调整
1521

1622
- 重构部分页面模块 UI,迁移到 shadcn/ui
1723
- 调整 OpenAI API Key 的代理配置逻辑,修复 [#11](https://github.com/LTopx/Le-AI/issues/11)
24+
- 会话 loading 时禁止播放语音
1825

1926
## v0.9.1
2027

package.json

+5-4
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@
2626
"@radix-ui/react-separator": "1.0.3",
2727
"@radix-ui/react-slider": "1.1.2",
2828
"@radix-ui/react-slot": "1.0.2",
29+
"@radix-ui/react-switch": "^1.0.3",
2930
"@radix-ui/react-tabs": "1.0.4",
3031
"@radix-ui/react-tooltip": "1.0.6",
3132
"@react-email/components": "0.0.7",
@@ -36,15 +37,15 @@
3637
"@types/react-dom": "18.2.7",
3738
"@upstash/redis": "1.22.0",
3839
"ahooks": "3.7.8",
39-
"autoprefixer": "10.4.15",
40+
"autoprefixer": "10.4.16",
4041
"class-variance-authority": "0.7.0",
4142
"clsx": "2.0.0",
4243
"crypto-js": "4.1.1",
4344
"date-fns": "2.30.0",
4445
"decimal.js": "10.4.3",
4546
"echarts": "5.4.3",
4647
"eslint": "8.49.0",
47-
"eslint-config-next": "13.5.1",
48+
"eslint-config-next": "13.5.2",
4849
"file-saver": "2.0.5",
4950
"framer-motion": "10.16.4",
5051
"gpt-tokens": "1.1.2",
@@ -53,9 +54,9 @@
5354
"lucide-react": "0.279.0",
5455
"math-random": "2.0.1",
5556
"microsoft-cognitiveservices-speech-sdk": "1.32.0",
56-
"next": "13.5.1",
57+
"next": "13.5.2",
5758
"next-auth": "4.23.1",
58-
"next-intl": "2.20.0",
59+
"next-intl": "2.20.1",
5960
"next-themes": "0.2.1",
6061
"nodemailer": "6.9.5",
6162
"postcss": "8.4.30",

0 commit comments

Comments
 (0)