Skip to content

Commit e0a1700

Browse files
reeeborn33lixin_33
andauthored
[app-platform] add text concatenate node (#444)
* [app-builder] add text concatenation tool * [app-builder] add text concatenate node * [app-builder] Implementing text concatenate node based on fit framework * [appbuilder] modify fit version --------- Co-authored-by: lixin_33 <[email protected]>
1 parent 070b8cb commit e0a1700

File tree

48 files changed

+581
-44
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

48 files changed

+581
-44
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -188,7 +188,7 @@ fit start
188188
189189
> 这里直接使用了 `fit` 命令,该命令请参考 `fit-framework` 项目的[指导手册](https://github.com/ModelEngine-Group/fit-framework/blob/main/docs/framework/fit/java/quick-start-guide/03.%20%E4%BD%BF%E7%94%A8%E6%8F%92%E4%BB%B6%E7%9A%84%E7%83%AD%E6%8F%92%E6%8B%94%E8%83%BD%E5%8A%9B.md)。
190190
>
191-
> 当前,`app-platform` 使用了 `fit` 的 3.5.1 版本,因此,如果采用手动编译,需要在 `fit-framework` 仓库中切换到 `v3.5.1` 标签处进行编译构建操作。
191+
> 当前,`app-platform` 使用了 `fit` 的 3.5.3 版本,因此,如果采用手动编译,需要在 `fit-framework` 仓库中切换到 `v3.5.3` 标签处进行编译构建操作。
192192
193193
**调试命令**
194194

app-builder/plugins/aipp-classify-question/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@
6666
<dependency>
6767
<groupId>org.fitframework.plugin</groupId>
6868
<artifactId>fit-message-serializer-json-jackson</artifactId>
69-
<version>3.5.1</version>
69+
<version>${fit.version}</version>
7070
<scope>test</scope>
7171
</dependency>
7272
<dependency>

app-builder/plugins/aipp-extractor/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@
6161
<dependency>
6262
<groupId>org.fitframework.plugin</groupId>
6363
<artifactId>fit-message-serializer-json-jackson</artifactId>
64-
<version>3.5.1</version>
64+
<version>${fit.version}</version>
6565
<scope>test</scope>
6666
</dependency>
6767
<dependency>

app-builder/plugins/aipp-http-call/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@
4949
<dependency>
5050
<groupId>org.fitframework.plugin</groupId>
5151
<artifactId>fit-message-serializer-json-jackson</artifactId>
52-
<version>3.5.1</version>
52+
<version>${fit.version}</version>
5353
<scope>test</scope>
5454
</dependency>
5555
<dependency>

app-builder/plugins/aipp-loop-tool/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@
101101
<plugin>
102102
<groupId>org.fitframework.fel</groupId>
103103
<artifactId>tool-maven-plugin</artifactId>
104-
<version>3.5.1</version>
104+
<version>${fit.version}</version>
105105
<executions>
106106
<execution>
107107
<id>build-tool</id>

app-builder/plugins/aipp-parallel-tool/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@
113113
<plugin>
114114
<groupId>org.fitframework.fel</groupId>
115115
<artifactId>tool-maven-plugin</artifactId>
116-
<version>3.5.1</version>
116+
<version>${fit.version}</version>
117117
<executions>
118118
<execution>
119119
<id>build-tool</id>

app-builder/plugins/aipp-plugin/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -166,7 +166,7 @@
166166
<dependency>
167167
<groupId>org.fitframework.plugin</groupId>
168168
<artifactId>fit-message-serializer-json-jackson</artifactId>
169-
<version>3.5.1</version>
169+
<version>${fit.version}</version>
170170
<scope>test</scope>
171171
</dependency>
172172
<dependency>
@@ -319,7 +319,7 @@
319319
<plugin>
320320
<groupId>org.fitframework.fel</groupId>
321321
<artifactId>tool-maven-plugin</artifactId>
322-
<version>3.5.1</version>
322+
<version>${fit.version}</version>
323323
<executions>
324324
<execution>
325325
<id>build-tool</id>

app-builder/plugins/aipp-plugin/src/main/resources/application.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -83,6 +83,7 @@ tool:
8383
FILEEXTRACTNODESTATE: fileExtractionNodeState
8484
LOOPNODESTATE: loopNodeState
8585
PARALLELNODESTATE: parallelNodeState
86+
TEXTCONCATENATENODESTATE: textConcatenateNodeState
8687
export-meta:
8788
version: 1.0.1
8889
sensitive:

app-builder/plugins/aipp-plugin/src/main/resources/component/basic_node_en.json

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -78,5 +78,10 @@
7878
"type": "parallelNodeState",
7979
"name": "Parallel",
8080
"uniqueName": ""
81+
},
82+
{
83+
"type": "textConcatenateNodeState",
84+
"name": "Text Joiner",
85+
"uniqueName": ""
8186
}
8287
]

app-builder/plugins/aipp-plugin/src/main/resources/component/basic_node_zh.json

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -78,5 +78,10 @@
7878
"type": "parallelNodeState",
7979
"name": "并行",
8080
"uniqueName": ""
81+
},
82+
{
83+
"type": "textConcatenateNodeState",
84+
"name": "文本拼接",
85+
"uniqueName": ""
8186
}
8287
]

0 commit comments

Comments
 (0)