-
Notifications
You must be signed in to change notification settings - Fork 95
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' of github.com:OpenSPG/openspg into thinker_dedu…
…ce_openspg
- Loading branch information
Showing
601 changed files
with
18,222 additions
and
18,704 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
24 changes: 24 additions & 0 deletions
24
builder/core/src/main/java/com/antgroup/openspg/builder/core/logical/BuilderIndexNode.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
/* | ||
* Copyright 2023 OpenSPG Authors | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except | ||
* in compliance with the License. You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software distributed under the License | ||
* is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express | ||
* or implied. | ||
*/ | ||
|
||
package com.antgroup.openspg.builder.core.logical; | ||
|
||
import com.antgroup.openspg.builder.model.pipeline.config.BuilderIndexNodeConfig; | ||
import com.antgroup.openspg.builder.model.pipeline.enums.NodeTypeEnum; | ||
|
||
public class BuilderIndexNode extends BaseLogicalNode<BuilderIndexNodeConfig> { | ||
|
||
public BuilderIndexNode(String id, String name, BuilderIndexNodeConfig nodeConfig) { | ||
super(id, name, NodeTypeEnum.BUILDER_INDEX, nodeConfig); | ||
} | ||
} |
25 changes: 25 additions & 0 deletions
25
...ore/src/main/java/com/antgroup/openspg/builder/core/logical/ExtractPostProcessorNode.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
/* | ||
* Copyright 2023 OpenSPG Authors | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except | ||
* in compliance with the License. You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software distributed under the License | ||
* is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express | ||
* or implied. | ||
*/ | ||
|
||
package com.antgroup.openspg.builder.core.logical; | ||
|
||
import com.antgroup.openspg.builder.model.pipeline.config.ExtractPostProcessorNodeConfig; | ||
import com.antgroup.openspg.builder.model.pipeline.enums.NodeTypeEnum; | ||
|
||
public class ExtractPostProcessorNode extends BaseLogicalNode<ExtractPostProcessorNodeConfig> { | ||
|
||
public ExtractPostProcessorNode( | ||
String id, String name, ExtractPostProcessorNodeConfig nodeConfig) { | ||
super(id, name, NodeTypeEnum.EXTRACT_POST_PROCESSOR, nodeConfig); | ||
} | ||
} |
24 changes: 24 additions & 0 deletions
24
builder/core/src/main/java/com/antgroup/openspg/builder/core/logical/LLMNlExtractNode.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
/* | ||
* Copyright 2023 OpenSPG Authors | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except | ||
* in compliance with the License. You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software distributed under the License | ||
* is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express | ||
* or implied. | ||
*/ | ||
|
||
package com.antgroup.openspg.builder.core.logical; | ||
|
||
import com.antgroup.openspg.builder.model.pipeline.config.LLMNlExtractNodeConfig; | ||
import com.antgroup.openspg.builder.model.pipeline.enums.NodeTypeEnum; | ||
|
||
public class LLMNlExtractNode extends BaseLogicalNode<LLMNlExtractNodeConfig> { | ||
|
||
public LLMNlExtractNode(String id, String name, LLMNlExtractNodeConfig nodeConfig) { | ||
super(id, name, NodeTypeEnum.LLM_NL_EXTRACT, nodeConfig); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
24 changes: 24 additions & 0 deletions
24
builder/core/src/main/java/com/antgroup/openspg/builder/core/logical/Neo4jSinkNode.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
/* | ||
* Copyright 2023 OpenSPG Authors | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except | ||
* in compliance with the License. You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software distributed under the License | ||
* is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express | ||
* or implied. | ||
*/ | ||
|
||
package com.antgroup.openspg.builder.core.logical; | ||
|
||
import com.antgroup.openspg.builder.model.pipeline.config.Neo4jSinkNodeConfig; | ||
import com.antgroup.openspg.builder.model.pipeline.enums.NodeTypeEnum; | ||
|
||
public class Neo4jSinkNode extends BaseLogicalNode<Neo4jSinkNodeConfig> { | ||
|
||
public Neo4jSinkNode(String id, String name, Neo4jSinkNodeConfig nodeConfig) { | ||
super(id, name, NodeTypeEnum.NEO4J_SINK, nodeConfig); | ||
} | ||
} |
24 changes: 24 additions & 0 deletions
24
builder/core/src/main/java/com/antgroup/openspg/builder/core/logical/ParagraphSplitNode.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
/* | ||
* Copyright 2023 OpenSPG Authors | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except | ||
* in compliance with the License. You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software distributed under the License | ||
* is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express | ||
* or implied. | ||
*/ | ||
|
||
package com.antgroup.openspg.builder.core.logical; | ||
|
||
import com.antgroup.openspg.builder.model.pipeline.config.ParagraphSplitNodeConfig; | ||
import com.antgroup.openspg.builder.model.pipeline.enums.NodeTypeEnum; | ||
|
||
public class ParagraphSplitNode extends BaseLogicalNode<ParagraphSplitNodeConfig> { | ||
|
||
public ParagraphSplitNode(String id, String name, ParagraphSplitNodeConfig nodeConfig) { | ||
super(id, name, NodeTypeEnum.PARAGRAPH_SPLIT, nodeConfig); | ||
} | ||
} |
24 changes: 24 additions & 0 deletions
24
builder/core/src/main/java/com/antgroup/openspg/builder/core/logical/StringSourceNode.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
/* | ||
* Copyright 2023 OpenSPG Authors | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except | ||
* in compliance with the License. You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software distributed under the License | ||
* is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express | ||
* or implied. | ||
*/ | ||
|
||
package com.antgroup.openspg.builder.core.logical; | ||
|
||
import com.antgroup.openspg.builder.model.pipeline.config.StringSourceNodeConfig; | ||
import com.antgroup.openspg.builder.model.pipeline.enums.NodeTypeEnum; | ||
|
||
public class StringSourceNode extends BaseLogicalNode<StringSourceNodeConfig> { | ||
|
||
public StringSourceNode(String id, String name, StringSourceNodeConfig nodeConfig) { | ||
super(id, name, NodeTypeEnum.STRING_SOURCE, nodeConfig); | ||
} | ||
} |
24 changes: 24 additions & 0 deletions
24
...core/src/main/java/com/antgroup/openspg/builder/core/logical/VectorizerProcessorNode.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
/* | ||
* Copyright 2023 OpenSPG Authors | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except | ||
* in compliance with the License. You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software distributed under the License | ||
* is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express | ||
* or implied. | ||
*/ | ||
|
||
package com.antgroup.openspg.builder.core.logical; | ||
|
||
import com.antgroup.openspg.builder.model.pipeline.config.predicting.VectorizerProcessorNodeConfig; | ||
import com.antgroup.openspg.builder.model.pipeline.enums.NodeTypeEnum; | ||
|
||
public class VectorizerProcessorNode extends BaseLogicalNode<VectorizerProcessorNodeConfig> { | ||
|
||
public VectorizerProcessorNode(String id, String name, VectorizerProcessorNodeConfig nodeConfig) { | ||
super(id, name, NodeTypeEnum.VECTORIZER_PROCESSOR, nodeConfig); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.