File tree Expand file tree Collapse file tree 3 files changed +11
-12
lines changed
Expand file tree Collapse file tree 3 files changed +11
-12
lines changed Original file line number Diff line number Diff line change @@ -15,14 +15,6 @@ TAVILY_API_KEY= # 获取搜索服务的 api key 请访问 https://app.tavily.co
1515# TOGETHER_API_KEY=
1616# # endregion model_provider
1717
18- # # 数据库基础配置示例
19- # MYSQL_HOST=192.168.1.100
20- # MYSQL_USER=username
21- # MYSQL_PASSWORD=your_secure_password
22- # MYSQL_DATABASE=database_name
23- # MYSQL_PORT=3306
24- # MYSQL_CHARSET=utf8mb4
25-
2618# # region neo4j
2719# NEO4J_URI=
2820# NEO4J_USERNAME=
Original file line number Diff line number Diff line change 3838- 新增暗色模式支持并调整整体 UI([ #343 ] ( https://github.com/xerrors/Yuxi-Know/pull/343 ) )
3939- agent 状态中的文件区域,新增可以下载
4040- 移除 Chroma 的支持,当前版本标记为移除
41+ - 新增知识库评估功能,支持导入评估基准或者自动构建评估基准(目前仅支持Milvus类型知识库)
4142
4243### 修复
4344- 修复重排序模型实际未生效的问题
4445- 修复消息中断后消息消失的问题,并改善异常效果
4546- 修复当前版本如果调用结果为空的时候,工具调用状态会一直处于调用状态,尽管调用是成功的
47+ - 修复检索配置实际未生效的问题
4648
4749
4850## v0.3
Original file line number Diff line number Diff line change 1616
1717``` bash
1818# 克隆稳定版本
19- git clone --branch v0.3.0 --depth 1 https://github.com/xerrors/Yuxi-Know.git
19+ git clone --branch v0.3.6-beta --depth 1 https://github.com/xerrors/Yuxi-Know.git
2020cd Yuxi-Know
2121```
2222
2323::: warning 版本说明
2424- ` v0.3.0 ` : 稳定版本
25- - ` v0.3.5 -beta ` :最新的 Beta 测试版
25+ - ` v0.3.6 -beta ` :最新的 Beta 测试版
2626- ` main ` : 最新开发版本(不稳定,新特性可能会导致新 bug)
2727:::
2828
@@ -97,10 +97,10 @@ bash docker/pull_image.sh python:3.12-slim
9797powershell -ExecutionPolicy Bypass -File docker/pull_image.ps1 python:3.12-slim
9898```
9999
100- ** 离线部署方案 ** :
100+ ** 离线镜像拉取方案 ** :
101101
102102``` bash
103- # 在有网络的环境保存镜像
103+ # 在有网络的环境保存镜像(镜像名称需要确认是否和实际一致)
104104bash docker/save_docker_images.sh # Linux/macOS
105105powershell -ExecutionPolicy Bypass -File docker/save_docker_images.ps1 # Windows
106106
@@ -119,8 +119,13 @@ docker load -i docker_images_xxx.tar
119119如果构建失败,通常是网络问题,可以配置代理:
120120
121121``` bash
122+ # Linux / macOS
122123export HTTP_PROXY=http://IP:PORT
123124export HTTPS_PROXY=http://IP:PORT
125+
126+ # Windows PowerShell
127+ $env :HTTP_PROXY=" http://IP:PORT"
128+ $env :HTTPS_PROXY=" http://IP:PORT"
124129```
125130
126131如果已配置代理但构建失败,尝试移除代理后重试。
You can’t perform that action at this time.
0 commit comments