Skip to content

Commit c6df9c6

Browse files
authored
release: 0.7.1 (#145)
1 parent 5290f8c commit c6df9c6

File tree

2 files changed

+9
-4
lines changed

2 files changed

+9
-4
lines changed

README.md

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ DAT 的核心驱动力,并非完全源于大语言模型自身的又一次智
107107

108108
```bash
109109
# 下载最新版本
110-
wget https://github.com/junjiem/dat/releases/latest/download/dat-cli-0.7.0-full.tar.gz
110+
wget https://github.com/junjiem/dat/releases/latest/download/dat-cli-0.7.1-full.tar.gz
111111

112112
# 解压并配置环境变量
113113
tar -xzf dat-cli-x.x.x.tar.gz
@@ -445,7 +445,8 @@ dat-parent/
445445
│ ├── dat-storer-duckdb/ # 【本地内置向量存储】
446446
│ ├── dat-storer-pgvector/
447447
│ ├── dat-storer-weaviate/
448-
│ └── dat-storer-qdrant/
448+
│ ├── dat-storer-qdrant/
449+
│ └── dat-storer-milvus/
449450
├── 🤖 dat-agents/ # 智能代理实现
450451
│ └── dat-agent-agentic/
451452
├── 🌐 dat-servers/ # 服务端组件
@@ -479,7 +480,7 @@ DAT提供了 `dat-sdk` 开发工具包,方便开发者在自己的Java应用
479480
<dependency>
480481
<groupId>cn.datask</groupId>
481482
<artifactId>dat-sdk</artifactId>
482-
<version>0.7.0</version>
483+
<version>0.7.1</version>
483484
</dependency>
484485
```
485486

@@ -566,6 +567,10 @@ public class DatProjectRunnerExample {
566567
<groupId>cn.datask</groupId>
567568
<artifactId>dat-storer-qdrant</artifactId>
568569
</dependency>
570+
<dependency>
571+
<groupId>cn.datask</groupId>
572+
<artifactId>dat-storer-milvus</artifactId>
573+
</dependency>
569574

570575
<!-- DAT Embedding Model -->
571576
<dependency>

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@
6363
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
6464
<maven.compiler.source>17</maven.compiler.source>
6565
<maven.compiler.target>17</maven.compiler.target>
66-
<revision>0.7.0</revision>
66+
<revision>0.7.1</revision>
6767
<lombok.version>1.18.38</lombok.version>
6868
<jackson.version>2.18.3</jackson.version>
6969
<langchain4j.version>1.4.0</langchain4j.version>

0 commit comments

Comments
 (0)