Skip to content

Commit

Permalink
move camel-chatscript into camel-ai folder (#13590)
Browse files Browse the repository at this point in the history
  • Loading branch information
davsclaus committed Mar 22, 2024
1 parent 437adee commit c628946
Show file tree
Hide file tree
Showing 24 changed files with 6 additions and 7 deletions.
Expand Up @@ -21,14 +21,13 @@

<modelVersion>4.0.0</modelVersion>
<parent>
<artifactId>camel-ai-parent</artifactId>
<groupId>org.apache.camel</groupId>
<artifactId>components</artifactId>
<version>4.5.0-SNAPSHOT</version>
</parent>

<artifactId>camel-chatscript</artifactId>
<packaging>jar</packaging>

<name>Camel :: ChatScript</name>
<description>Camel support for ChatScript</description>

Expand Down
1 change: 1 addition & 0 deletions components/camel-ai/pom.xml
Expand Up @@ -34,6 +34,7 @@
<description>Camel AI parent</description>

<modules>
<module>camel-chatscript</module>
<module>camel-djl</module>
<module>camel-langchain-chat</module>
<module>camel-langchain-embeddings</module>
Expand Down
1 change: 0 additions & 1 deletion components/pom.xml
Expand Up @@ -98,7 +98,6 @@
<module>camel-caffeine</module>
<module>camel-cassandraql</module>
<module>camel-cbor</module>
<module>camel-chatscript</module>
<module>camel-chunk</module>
<module>camel-cloudevents</module>
<module>camel-cm-sms</module>
Expand Down
2 changes: 1 addition & 1 deletion docs/components/modules/ROOT/examples/json/chatscript.json
Expand Up @@ -37,8 +37,8 @@ private MojoHelper() {
public static List<Path> getComponentPath(Path dir) {
switch (dir.getFileName().toString()) {
case "camel-ai":
return Arrays.asList(dir.resolve("camel-djl"), dir.resolve("camel-langchain-chat"),
dir.resolve("camel-langchain-embeddings"));
return Arrays.asList(dir.resolve("camel-chatscript"), 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 c628946

Please sign in to comment.