Skip to content
This repository was archived by the owner on Jan 20, 2026. It is now read-only.

Commit 11283ed

Browse files
author
hodge
committed
# Add ProcessRule.Mode: hierarchical
1 parent 360e187 commit 11283ed

File tree

4 files changed

+8
-6
lines changed

4 files changed

+8
-6
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ dify-java-client
66
<img alt="maven-central" src="https://img.shields.io/badge/Java-17-blue" />
77
</a>
88
<a href="https://central.sonatype.com/artifact/io.github.yuanbaobaoo/dify-java-client" target="_blank">
9-
<img alt="maven-central" src="https://img.shields.io/badge/maven--central-1.3.3-green" />
9+
<img alt="maven-central" src="https://img.shields.io/badge/maven--central-1.3.4-green" />
1010
</a>
1111
</p>
1212

@@ -26,7 +26,7 @@ Dify Version: <= 1.x
2626
<dependency>
2727
<groupId>io.github.yuanbaobaoo</groupId>
2828
<artifactId>dify-java-client</artifactId>
29-
<version>1.3.3</version>
29+
<version>1.3.4</version>
3030
</dependency>
3131
```
3232

README_EN.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ dify-java-client
66
<img alt="maven-central" src="https://img.shields.io/badge/Java-17-blue" />
77
</a>
88
<a href="https://central.sonatype.com/artifact/io.github.yuanbaobaoo/dify-java-client" target="_blank">
9-
<img alt="maven-central" src="https://img.shields.io/badge/maven--central-1.3.3-green" />
9+
<img alt="maven-central" src="https://img.shields.io/badge/maven--central-1.3.4-green" />
1010
</a>
1111
</p>
1212

@@ -26,7 +26,7 @@ Dify Version: <= 1.x
2626
<dependency>
2727
<groupId>io.github.yuanbaobaoo</groupId>
2828
<artifactId>dify-java-client</artifactId>
29-
<version>1.3.3</version>
29+
<version>1.3.4</version>
3030
</dependency>
3131
```
3232

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
<groupId>io.github.yuanbaobaoo</groupId>
66
<artifactId>dify-java-client</artifactId>
7-
<version>1.3.3</version>
7+
<version>1.3.4</version>
88
<description>The Simple Dify Java Client</description>
99
<url>https://github.com/yuanbaobaoo/dify-java-client</url>
1010

src/main/java/io/github/yuanbaobaoo/dify/dataset/types/ProcessRule.java

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,9 @@ public enum Mode {
3838
// 自动
3939
automatic ,
4040
// 自定义
41-
custom
41+
custom,
42+
// 层级分段
43+
hierarchical,
4244
}
4345

4446
}

0 commit comments

Comments
 (0)