You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/models/langChain4jCharacterTokenizer.json
+1
Original file line number
Diff line number
Diff line change
@@ -3,6 +3,7 @@
3
3
"kind": "model",
4
4
"name": "langChain4jCharacterTokenizer",
5
5
"title": "LangChain4J Tokenizer with character splitter",
6
+
"description": "Camel AI: Tokenizer for splitting by character.",
Copy file name to clipboardExpand all lines: catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/models/langChain4jLineTokenizer.json
+1
Original file line number
Diff line number
Diff line change
@@ -3,6 +3,7 @@
3
3
"kind": "model",
4
4
"name": "langChain4jLineTokenizer",
5
5
"title": "LangChain4J Tokenizer with line splitter",
6
+
"description": "Camel AI: Tokenizer for splitting line by line.",
Copy file name to clipboardExpand all lines: catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/models/langChain4jParagraphTokenizer.json
+1
Original file line number
Diff line number
Diff line change
@@ -3,6 +3,7 @@
3
3
"kind": "model",
4
4
"name": "langChain4jParagraphTokenizer",
5
5
"title": "LangChain4J Tokenizer with paragraph splitter",
6
+
"description": "Camel AI: Tokenizer for splitting by paragraphs.",
Copy file name to clipboardExpand all lines: catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/models/langChain4jSentenceTokenizer.json
+1
Original file line number
Diff line number
Diff line change
@@ -3,6 +3,7 @@
3
3
"kind": "model",
4
4
"name": "langChain4jSentenceTokenizer",
5
5
"title": "LangChain4J Tokenizer with sentence splitter",
6
+
"description": "Camel AI: Tokenizer for splitting by sentences.",
Copy file name to clipboardExpand all lines: catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/models/langChain4jWordTokenizer.json
+1
Original file line number
Diff line number
Diff line change
@@ -3,6 +3,7 @@
3
3
"kind": "model",
4
4
"name": "langChain4jWordTokenizer",
5
5
"title": "LangChain4J Tokenizer with word splitter",
6
+
"description": "Camel AI: Tokenizer for splitting by word.",
Copy file name to clipboardExpand all lines: core/camel-core-model/src/generated/resources/META-INF/org/apache/camel/model/tokenizer/langChain4jCharacterTokenizer.json
+1
Original file line number
Diff line number
Diff line change
@@ -3,6 +3,7 @@
3
3
"kind": "model",
4
4
"name": "langChain4jCharacterTokenizer",
5
5
"title": "LangChain4J Tokenizer with character splitter",
6
+
"description": "Camel AI: Tokenizer for splitting by character.",
Copy file name to clipboardExpand all lines: core/camel-core-model/src/generated/resources/META-INF/org/apache/camel/model/tokenizer/langChain4jLineTokenizer.json
+1
Original file line number
Diff line number
Diff line change
@@ -3,6 +3,7 @@
3
3
"kind": "model",
4
4
"name": "langChain4jLineTokenizer",
5
5
"title": "LangChain4J Tokenizer with line splitter",
6
+
"description": "Camel AI: Tokenizer for splitting line by line.",
Copy file name to clipboardExpand all lines: core/camel-core-model/src/generated/resources/META-INF/org/apache/camel/model/tokenizer/langChain4jParagraphTokenizer.json
+1
Original file line number
Diff line number
Diff line change
@@ -3,6 +3,7 @@
3
3
"kind": "model",
4
4
"name": "langChain4jParagraphTokenizer",
5
5
"title": "LangChain4J Tokenizer with paragraph splitter",
6
+
"description": "Camel AI: Tokenizer for splitting by paragraphs.",
Copy file name to clipboardExpand all lines: core/camel-core-model/src/generated/resources/META-INF/org/apache/camel/model/tokenizer/langChain4jSentenceTokenizer.json
+1
Original file line number
Diff line number
Diff line change
@@ -3,6 +3,7 @@
3
3
"kind": "model",
4
4
"name": "langChain4jSentenceTokenizer",
5
5
"title": "LangChain4J Tokenizer with sentence splitter",
6
+
"description": "Camel AI: Tokenizer for splitting by sentences.",
Copy file name to clipboardExpand all lines: core/camel-core-model/src/generated/resources/META-INF/org/apache/camel/model/tokenizer/langChain4jWordTokenizer.json
+1
Original file line number
Diff line number
Diff line change
@@ -3,6 +3,7 @@
3
3
"kind": "model",
4
4
"name": "langChain4jWordTokenizer",
5
5
"title": "LangChain4J Tokenizer with word splitter",
6
+
"description": "Camel AI: Tokenizer for splitting by word.",
Copy file name to clipboardExpand all lines: core/camel-core-model/src/main/java/org/apache/camel/model/tokenizer/LangChain4jCharacterTokenizerDefinition.java
+4-2
Original file line number
Diff line number
Diff line change
@@ -14,7 +14,6 @@
14
14
* See the License for the specific language governing permissions and
15
15
* limitations under the License.
16
16
*/
17
-
18
17
packageorg.apache.camel.model.tokenizer;
19
18
20
19
importjakarta.xml.bind.annotation.XmlAccessType;
@@ -24,10 +23,14 @@
24
23
25
24
importorg.apache.camel.spi.Metadata;
26
25
26
+
/**
27
+
* Camel AI: Tokenizer for splitting by character.
28
+
*/
27
29
@Metadata(firstVersion = "4.8.0", label = "eip,transformation,ai", title = "LangChain4J Tokenizer with character splitter")
Copy file name to clipboardExpand all lines: core/camel-core-model/src/main/java/org/apache/camel/model/tokenizer/LangChain4jLineTokenizerDefinition.java
+3-3
Original file line number
Diff line number
Diff line change
@@ -14,7 +14,6 @@
14
14
* See the License for the specific language governing permissions and
15
15
* limitations under the License.
16
16
*/
17
-
18
17
packageorg.apache.camel.model.tokenizer;
19
18
20
19
importjakarta.xml.bind.annotation.XmlAccessType;
@@ -24,6 +23,9 @@
24
23
25
24
importorg.apache.camel.spi.Metadata;
26
25
26
+
/**
27
+
* Camel AI: Tokenizer for splitting line by line.
28
+
*/
27
29
@Metadata(firstVersion = "4.8.0", label = "eip,transformation,ai", title = "LangChain4J Tokenizer with line splitter")
Copy file name to clipboardExpand all lines: core/camel-core-model/src/main/java/org/apache/camel/model/tokenizer/LangChain4jParagraphTokenizerDefinition.java
+3-2
Original file line number
Diff line number
Diff line change
@@ -14,7 +14,6 @@
14
14
* See the License for the specific language governing permissions and
15
15
* limitations under the License.
16
16
*/
17
-
18
17
packageorg.apache.camel.model.tokenizer;
19
18
20
19
importjakarta.xml.bind.annotation.XmlAccessType;
@@ -24,6 +23,9 @@
24
23
25
24
importorg.apache.camel.spi.Metadata;
26
25
26
+
/**
27
+
* Camel AI: Tokenizer for splitting by paragraphs.
28
+
*/
27
29
@Metadata(firstVersion = "4.8.0", label = "eip,transformation,ai", title = "LangChain4J Tokenizer with paragraph splitter")
Copy file name to clipboardExpand all lines: core/camel-core-model/src/main/java/org/apache/camel/model/tokenizer/LangChain4jSentenceTokenizerDefinition.java
+4-2
Original file line number
Diff line number
Diff line change
@@ -14,7 +14,6 @@
14
14
* See the License for the specific language governing permissions and
15
15
* limitations under the License.
16
16
*/
17
-
18
17
packageorg.apache.camel.model.tokenizer;
19
18
20
19
importjakarta.xml.bind.annotation.XmlAccessType;
@@ -24,10 +23,14 @@
24
23
25
24
importorg.apache.camel.spi.Metadata;
26
25
26
+
/**
27
+
* Camel AI: Tokenizer for splitting by sentences.
28
+
*/
27
29
@Metadata(firstVersion = "4.8.0", label = "eip,transformation,ai", title = "LangChain4J Tokenizer with sentence splitter")
Copy file name to clipboardExpand all lines: core/camel-core-model/src/main/java/org/apache/camel/model/tokenizer/LangChain4jWordTokenizerDefinition.java
+4-2
Original file line number
Diff line number
Diff line change
@@ -14,7 +14,6 @@
14
14
* See the License for the specific language governing permissions and
15
15
* limitations under the License.
16
16
*/
17
-
18
17
packageorg.apache.camel.model.tokenizer;
19
18
20
19
importjakarta.xml.bind.annotation.XmlAccessType;
@@ -24,10 +23,14 @@
24
23
25
24
importorg.apache.camel.spi.Metadata;
26
25
26
+
/**
27
+
* Camel AI: Tokenizer for splitting by word.
28
+
*/
27
29
@Metadata(firstVersion = "4.8.0", label = "eip,transformation,ai", title = "LangChain4J Tokenizer with word splitter")
Copy file name to clipboardExpand all lines: dsl/camel-yaml-dsl/camel-yaml-dsl-deserializers/src/generated/java/org/apache/camel/dsl/yaml/deserializers/ModelDeserializers.java
0 commit comments