Skip to content

Commit

Permalink
Add langchain-bigdata module
Browse files Browse the repository at this point in the history
  • Loading branch information
HamaWhiteGG committed Jul 20, 2023
1 parent 16d17ea commit 6d9f44a
Show file tree
Hide file tree
Showing 4 changed files with 78 additions and 0 deletions.
21 changes: 21 additions & 0 deletions langchain-bigdata/langchain-flink/pom.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>io.github.hamawhitegg</groupId>
<artifactId>langchain-bigdata</artifactId>
<version>0.1.9</version>
</parent>

<artifactId>langchain-flink</artifactId>

<dependencies>
<dependency>
<groupId>io.github.hamawhitegg</groupId>
<artifactId>langchain-core</artifactId>
<version>${project.version}</version>
</dependency>
</dependencies>

</project>
21 changes: 21 additions & 0 deletions langchain-bigdata/langchain-spark/pom.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>io.github.hamawhitegg</groupId>
<artifactId>langchain-bigdata</artifactId>
<version>0.1.9</version>
</parent>

<artifactId>langchain-spark</artifactId>

<dependencies>
<dependency>
<groupId>io.github.hamawhitegg</groupId>
<artifactId>langchain-core</artifactId>
<version>${project.version}</version>
</dependency>
</dependencies>

</project>
35 changes: 35 additions & 0 deletions langchain-bigdata/pom.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>io.github.hamawhitegg</groupId>
<artifactId>langchain-java</artifactId>
<version>0.1.9</version>
</parent>

<artifactId>langchain-bigdata</artifactId>
<packaging>pom</packaging>

<modules>
<module>langchain-flink</module>
<module>langchain-spark</module>
</modules>

<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
</plugin>
<plugin>
<groupId>com.diffplug.spotless</groupId>
<artifactId>spotless-maven-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
</plugin>
</plugins>
</build>
</project>
1 change: 1 addition & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@
<module>serpapi-client</module>
<module>pinecone-client</module>
<module>langchain-examples</module>
<module>langchain-bigdata</module>
</modules>

<properties>
Expand Down

0 comments on commit 6d9f44a

Please sign in to comment.