Skip to content

Commit

Permalink
Add langchain4j-pinecone
Browse files Browse the repository at this point in the history
  • Loading branch information
IsuruMaduranga committed Jan 7, 2025
1 parent 5be6a7b commit 29ccd57
Show file tree
Hide file tree
Showing 4 changed files with 62 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
io.grpc.internal.PickFirstLoadBalancerProvider
io.grpc.util.SecretRoundRobinLoadBalancerProvider$Provider
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
io.grpc.netty.shaded.io.grpc.netty.NettyChannelProvider
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
io.grpc.internal.DnsNameResolverProvider
58 changes: 58 additions & 0 deletions langchain4j-pinecone/pom.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,58 @@
<?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>

<groupId>dev.langchain4j.wso2</groupId>
<artifactId>langchain4j-pinecone</artifactId>
<version>0.35.0.wso2v1</version>
<packaging>bundle</packaging>

<dependencies>
<dependency>
<groupId>dev.langchain4j</groupId>
<artifactId>langchain4j-pinecone</artifactId>
<version>0.35.0</version>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-nop</artifactId>
<version>1.7.36</version>
</dependency>
</dependencies>

<build>
<plugins>
<plugin>
<groupId>org.apache.felix</groupId>
<artifactId>maven-bundle-plugin</artifactId>
<version>5.1.8</version>
<extensions>true</extensions>
<configuration>
<instructions>
<Bundle-SymbolicName>${project.artifactId}</Bundle-SymbolicName>
<Bundle-Name>${project.artifactId}</Bundle-Name>
<Export-Package>
dev.langchain4j.*;version="${project.version}"
</Export-Package>
<Private-Package>
</Private-Package>
<Import-Package>
dev.langchain4j.*
</Import-Package>
<Embed-Dependency>*;scope=compile|runtime;inline=true</Embed-Dependency>
<Embed-Transitive>true</Embed-Transitive>
<_failok>true</_failok>
<_nouses>true</_nouses>
<DynamicImport-Package>*</DynamicImport-Package>
<Include-Resource>
META-INF/services=${basedir}/META-INF/services
</Include-Resource>
<_fixupmessages>"Classes found in the wrong directory..."</_fixupmessages>
</instructions>
</configuration>
</plugin>
</plugins>
</build>
</project>

0 comments on commit 29ccd57

Please sign in to comment.