Skip to content

Commit

Permalink
CAMEL-20595: Move camel-djl into camel-ai folder (#13587)
Browse files Browse the repository at this point in the history
  • Loading branch information
davsclaus committed Mar 22, 2024
1 parent 2507a03 commit 9af0e8d
Show file tree
Hide file tree
Showing 132 changed files with 9 additions and 8 deletions.
Expand Up @@ -21,7 +21,7 @@
<modelVersion>4.0.0</modelVersion>

<parent>
<artifactId>components</artifactId>
<artifactId>camel-ai-parent</artifactId>
<groupId>org.apache.camel</groupId>
<version>4.5.0-SNAPSHOT</version>
</parent>
Expand Down
Expand Up @@ -103,7 +103,7 @@ It will automatically determine the appropriate jars for your system based on th
<dependency>
<groupId>ai.djl.mxnet</groupId>
<artifactId>mxnet-native-auto</artifactId>
<version>1.7.0-a</version>
<version>1.8.0</version>
<scope>runtime</scope>
</dependency>
----
Expand Down Expand Up @@ -132,7 +132,7 @@ It will automatically determine the appropriate jars for your system based on th
<dependency>
<groupId>ai.djl.pytorch</groupId>
<artifactId>pytorch-native-auto</artifactId>
<version>1.5.0</version>
<version>1.9.1</version>
<scope>runtime</scope>
</dependency>
----
Expand Down Expand Up @@ -161,7 +161,7 @@ It will automatically determine the appropriate jars for your system based on th
<dependency>
<groupId>ai.djl.tensorflow</groupId>
<artifactId>tensorflow-native-auto</artifactId>
<version>2.1.0</version>
<version>2.4.1</version>
<scope>runtime</scope>
</dependency>
----
Expand Down
1 change: 1 addition & 0 deletions components/camel-ai/pom.xml
Expand Up @@ -33,6 +33,7 @@
<description>Camel AI parent</description>

<modules>
<module>camel-djl</module>
<module>camel-langchain-chat</module>
<module>camel-langchain-embeddings</module>
</modules>
Expand Down
1 change: 0 additions & 1 deletion components/pom.xml
Expand Up @@ -116,7 +116,6 @@
<module>camel-dhis2</module>
<module>camel-digitalocean</module>
<module>camel-disruptor</module>
<module>camel-djl</module>
<module>camel-dns</module>
<module>camel-docker</module>
<module>camel-drill</module>
Expand Down
2 changes: 1 addition & 1 deletion docs/components/modules/ROOT/examples/json/djl.json
2 changes: 1 addition & 1 deletion docs/components/modules/ROOT/pages/djl-component.adoc
Expand Up @@ -37,7 +37,8 @@ private MojoHelper() {
public static List<Path> getComponentPath(Path dir) {
switch (dir.getFileName().toString()) {
case "camel-ai":
return Arrays.asList(dir.resolve("camel-langchain-chat"), dir.resolve("camel-langchain-embeddings"));
return Arrays.asList(dir.resolve("camel-djl"), dir.resolve("camel-langchain-chat"),
dir.resolve("camel-langchain-embeddings"));
case "camel-as2":
return Collections.singletonList(dir.resolve("camel-as2-component"));
case "camel-avro-rpc":
Expand Down

0 comments on commit 9af0e8d

Please sign in to comment.