Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

CAMEL-20595: Move camel-djl into camel-ai folder #13587

Merged
merged 1 commit into from
Mar 22, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
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